| 1234567891011121314151617181920212223242526272829303132 |
- {
- "manifest_version": 2,
- "name": "Firefox extension example",
- "description": " extension written in PureScript",
- "version": "0.1.0",
- "browser_specific_settings": {
- "gecko": {
- "id": "new_ext@mozilla.org"
- }
- },
- "icons": {
- "48": "assets/job-promotion.png"
- },
- "browser_action": {
- "default_icon": "assets/job-promotion.png",
- "default_title": "Test"
- },
- "content_scripts": [
- {
- "matches": ["<all_urls>"],
- "js": ["src/content.js"]
- }
- ],
- "background": {
- "scripts": ["src/background.js"],
- "persistent": true
- },
- "options_ui": {
- "page": "src/settings.html"
- },
- "permissions": ["activeTab", "tabs", "storage", "nativeMessaging"]
- }
|