25 lines
508 B
JSON
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"
|
|
]
|
|
} |