poptab/manifest.json

21 lines
446 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 20:03:55 -06:00
"version": "1.1",
"author": "Keith Irwin <mail@keithirwin.us> (keithirwin.us)",
2016-04-18 14:07:51 -06:00
"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",
2016-04-18 20:13:08 -06:00
"128": "tab.128.png"
2016-04-18 14:07:51 -06:00
},
"permissions": ["activeTab","tabs"]
}