29 lines
556 B
JSON
29 lines
556 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": [
|
|
"*://*.mozilla.org/*"
|
|
],
|
|
"js": [
|
|
"content_script.js"
|
|
]
|
|
}
|
|
],
|
|
"browser_action": {
|
|
"default_icon": {
|
|
"64": "icons/icon.png"
|
|
},
|
|
"default_popup": "browserAction/index.html",
|
|
"default_title": "Deezer Tooter"
|
|
},
|
|
"options_ui": {
|
|
"page": "options/index.html"
|
|
}
|
|
} |