Browser extension to hide view-reducing screen junk from websites.

bannerbanner/extension/ manifest.json
31 lines
718 B

  1. {
  2. "name": "bannerbanner",
  3. "description": "Hide view-reducing screen junk from websites.",
  4. "version": "1.2.0",
  5. "icons": {
  6. "48": "/icon_disabled.svg"
  7. },
  8. "page_action": {
  9. "browser_style": true,
  10. "default_title": "Ban banners",
  11. "default_icon": "/icon_enabled.svg"
  12. },
  13. "background": {
  14. "scripts": ["background_script.js"]
  15. },
  16. "content_scripts": [{
  17. "matches": ["<all_urls>"],
  18. "js": ["content_script.js"],
  19. "run_at": "document_end"
  20. }],
  21. "permissions": [
  22. "<all_urls>",
  23. "storage",
  24. "tabs"
  25. ],
  26. "applications": {
  27. "gecko": {"id": "bannerbanner@bannerbanner"}
  28. },
  29. "manifest_version": 2
  30. }