manifest.json 625 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "manifest_version": 2,
  3. "name": "LifeScrobbler",
  4. "version": "1.4",
  5. "description": "Scrobble visited pages to life.lab.unbl.ink after a delay, skipping blacklisted or paused tabs.",
  6. "permissions": [
  7. "tabs",
  8. "storage",
  9. "webNavigation",
  10. "https://life.lab.unbl.ink/*"
  11. ],
  12. "background": {
  13. "scripts": ["background.js"]
  14. },
  15. "browser_action": {
  16. "default_icon": {
  17. "48": "icons/stop.png"
  18. },
  19. "default_title": "LifeScrobbler"
  20. },
  21. "options_ui": {
  22. "page": "options.html",
  23. "open_in_tab": true
  24. },
  25. "icons": {
  26. "48": "icons/check.png",
  27. "96": "icons/check.png"
  28. }
  29. }