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

bannerbanner/extension/ manifest.json
28 lines
663 B

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