poptab/manifest.json

20 lines
379 B
JSON
Raw Normal View History

2016-04-18 14:07:51 -06:00
{
"name": "PopTab",
2016-04-18 19:57:58 -06:00
"description": "Pop the current tab into a popup or panel.",
2016-04-18 14:07:51 -06:00
"version": "1.0",
"manifest_version": 2,
"background": {
"persistent": false,
"scripts": ["poptab.js"]
},
"browser_action": {
2016-04-18 19:57:58 -06:00
"default_title": "Pop tab",
"default_icon": "tab.24.png"
},
"icons": {
"24": "tab.24.png",
"246": "tab.png"
2016-04-18 14:07:51 -06:00
},
"permissions": ["activeTab","tabs"]
}