{
"background": {
"scripts": [ "background.js" ]
},
"content_scripts": [ {
"all_frames": true,
"js": [ "content.js" ],
"matches": [ "http://*/*", "https://*/*", "file://*/*" ],
"run_at": "document_start"
} ],
"description": "Notificação de erros do javascript com opções de filtros, nível de mensagens e tipos de alertas.",
"icons": {
"128": "img/ico-128.png",
"16": "img/ico-16.png",
"48": "img/ico-48.png",
"96": "img/ico-96.png"
},
"incognito": "spanning",
"manifest_version": 2,
"name": "AlertConsole",
"options_page": "options.html",
"permissions": [
"notifications",
"unlimitedStorage"
],
"web_accessible_resources": [
"img/ico-48.png"
],
"page_action": {
"default_icon": "img/ico-16.png",
"default_popup": "popup.html",
"default_title": "AlertConsole"
},
"version": "1"