tabbro/manifest.json

23 lines
610 B
JSON
Raw Permalink Normal View History

2015-02-08 20:42:59 -08:00
{
"manifest_version": 2,
"content_security_policy": "script-src 'self'; object-src 'self' https://fonts.googleapis.com/;",
"name": "TAB BRO",
2015-02-08 23:47:03 -08:00
"description": "I'm your bro and I'll manage your tabs",
2015-02-08 20:42:59 -08:00
"version": "1.0",
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
2015-02-08 23:48:05 -08:00
},
"background": {
2015-02-08 20:42:59 -08:00
"scripts": [ "background.js" ]
2015-02-08 23:48:05 -08:00
},
"permissions": [
"tabs",
"storage",
"unlimitedStorage",
"activeTab",
"notifications", "idle", "chrome://favicon/"
2015-02-13 18:05:12 -08:00
],
"options_page": "options.html"
2015-02-08 23:48:05 -08:00
}