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

manifest.json 718 B

6 years ago
5 years ago
6 years ago
6 years ago
123456789101112131415161718192021222324252627282930
  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. }