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