I started yesterday to develop extensions for google chrome, and I followed google as follows:
I declare my manifest and added the page with the popup:
{
"name": "ODM Integration",
"description": "Open Download Manager integration for google chrome",
"version": "1.0",
"manifest_version": 2,
"default_locale": "en_US",
"author": "Samuel Ives",
"browser_action":{
"default_popup": "popup.html"
},
"permissions":[
"pageCapture"
]
}
html page:
<!DOCTYPE html>
<html>
<head>
<title>ODM Integration<title>
<meta charset = "UTF-8" />
</head>
<body>
<h1>Files</h1>
</body>
</html>
but what it returns when I click on the extension is a square of a 12 x 12 blank pixel.