30 lines
627 B
JSON
30 lines
627 B
JSON
{
|
|
"manifest_version": 2,
|
|
"name": "LifeScrobbler",
|
|
"version": "2.0.1",
|
|
"description": "Scrobble visited pages to life.lab.unbl.ink after a delay, skipping blacklisted or paused tabs.",
|
|
"permissions": [
|
|
"tabs",
|
|
"storage",
|
|
"webNavigation",
|
|
"https://life.lab.unbl.ink/*"
|
|
],
|
|
"background": {
|
|
"scripts": ["background.js"]
|
|
},
|
|
"browser_action": {
|
|
"default_icon": {
|
|
"48": "icons/stop.png"
|
|
},
|
|
"default_title": "LifeScrobbler"
|
|
},
|
|
"options_ui": {
|
|
"page": "options.html",
|
|
"open_in_tab": true
|
|
},
|
|
"icons": {
|
|
"48": "icons/check.png",
|
|
"96": "icons/check.png"
|
|
}
|
|
}
|