DeezerTooter/deezer-tooter/manifest.json
2020-09-30 13:53:52 +02:00

25 lines
508 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": ["*://*.deezer.com/*"],
"js": ["content_script.js"]
}
],
"browser_action": {
"default_icon": {
"64": "icons/icon.png"
},
"default_popup": "browserAction/index.html",
"default_title": "Deezer Tooter"
},
"permissions" : [
"activeTab"
]
}