Last active
July 4, 2022 14:31
-
-
Save dijux/a092e51faded127bec011a7f05bbf17f to your computer and use it in GitHub Desktop.
manifest.json for firebox
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "manifest_version": 2, | |
| "name": "My Notes", | |
| "description": "Take notes in your favorites websites", | |
| "version": "1.1", | |
| "background": { | |
| "scripts": ["background.js"] | |
| }, | |
| "browser_action": { | |
| "default_popup": "popup.html", | |
| "default_icon": "icon.png" | |
| }, | |
| "icons": { | |
| "12": "icon.png", | |
| "24": "icon.png", | |
| "36": "icon.png", | |
| "72": "icon.png", | |
| "124": "icon.png" | |
| }, | |
| "permissions": [ | |
| "storage", | |
| "contextMenus", | |
| "tabs", | |
| "scripting" | |
| ], | |
| "content_scripts": [ | |
| { | |
| "matches": [ | |
| "<all_urls>" | |
| ], | |
| "js": [ | |
| "/content.js" | |
| ], | |
| "run_at": "document_end", | |
| "all_frames": true | |
| } | |
| ], | |
| "web_accessible_resources": [ | |
| "*/*.css", | |
| "iframe.html", | |
| "assets/note_selected.png", | |
| "assets/note.png", | |
| "injected.js" | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment