|
123456789101112131415161718192021222324252627 |
- {
- "name": "bannerbanner",
- "description": "Hide view-reducing screen junk from websites.",
- "version": "1.0.0",
- "page_action": {
- "browser_style": true,
- "default_title": "Ban banners",
- "default_icon": "/icon_enabled.svg"
- },
- "background": {
- "scripts": ["background_script.js"]
- },
- "content_scripts": [{
- "matches": ["<all_urls>"],
- "js": ["content_script.js"],
- "run_at": "document_end"
- }],
- "permissions": [
- "<all_urls>",
- "storage",
- "tabs"
- ],
- "applications": {
- "gecko": {"id": "bannerbanner@bannerbanner"}
- },
- "manifest_version": 2
- }
|