DeezerTooter/deezer-tooter/manifest.json

25 lines
500 B
JSON

{
"manifest_version": 2,
"name": "Deezer Tooter",
"description": "Toots currently playing track from Deezer",
"version": "0.1",
"icons": {
"64": "icons/icon.png"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content_script.js"]
}
],
"browser_action": {
"default_icon": {
"64": "icons/icon.png"
},
"default_popup": "browserAction/index.html",
"default_title": "Deezer Tooter"
},
"permissions" : [
"activeTab"
]
}