{
"manifest_version": 2,
"author": "Tóth András",
"name": "Automatic Actions Management",
"short_name": "AAM",
"description": "This extension will able to run predefined user events.",
"version": "1.2",
"options_page": "options.html",
"browser_action": {
"default_icon": "css/images/icon48.png",
"default_popup": "popup.html"
},
"icons": {
"16": "css/images/icon16.png",
"48": "css/images/icon48.png",
"128": "css/images/icon128.png"
},
"content_scripts": [{
"matches": ["http://*/*", "https://*/*"],
"js": ["js/content.js"],
"run_at": "document_start"
}],
"background": {
"page": "background.html"
},
"permissions": ["tabs", "<all_urls>", "contextMenus", "storage"],
"web_accessible_resources": [
"css/aam-content-style.css"
]
}
|