Files
vrobbler-firefox-extension/manifest.json
2025-10-17 15:58:39 -04:00

30 lines
625 B
JSON

{
"manifest_version": 2,
"name": "LifeScrobbler",
"version": "2.0",
"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"
}
}