34 lines
738 B
JSON
34 lines
738 B
JSON
{
|
|
"manifest_version": 2,
|
|
"name": "LifeScrobbler",
|
|
"version": "4.0.0",
|
|
"description": "Scrobbles visited URLs to a configurable endpoint after a delay.",
|
|
"permissions": [
|
|
"tabs",
|
|
"storage",
|
|
"webNavigation",
|
|
"<all_urls>"
|
|
],
|
|
"background": {
|
|
"scripts": ["shared_settings.js", "background.js"]
|
|
},
|
|
"browser_action": {
|
|
"default_icon": {
|
|
"16": "icons/icon-16.png",
|
|
"32": "icons/icon-32.png",
|
|
"48": "icons/icon-48.png"
|
|
},
|
|
"default_title": "LifeScrobbler"
|
|
},
|
|
"options_ui": {
|
|
"page": "options.html",
|
|
"open_in_tab": true
|
|
},
|
|
"icons": {
|
|
"16": "icons/icon-16.png",
|
|
"32": "icons/icon-32.png",
|
|
"48": "icons/icon-48.png",
|
|
"128": "icons/icon-128.png"
|
|
}
|
|
}
|