diff options
Diffstat (limited to 'manifest.json')
| -rw-r--r-- | manifest.json | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/manifest.json b/manifest.json new file mode 100644 index 0000000..f34ad91 --- /dev/null +++ b/manifest.json | |||
| @@ -0,0 +1,55 @@ | |||
| 1 | { | ||
| 2 | "manifest_version": 2, | ||
| 3 | "name": "Floating cats", | ||
| 4 | "version": "0.1", | ||
| 5 | |||
| 6 | "author": "Uko Kokņevičs", | ||
| 7 | "description": "Adds floating cats to all websites", | ||
| 8 | |||
| 9 | "icons": { | ||
| 10 | "200": "/marsey3d.webp" | ||
| 11 | }, | ||
| 12 | |||
| 13 | "background": { | ||
| 14 | "scripts": ["/bg.js"], | ||
| 15 | "service_worker": "/bg.js", | ||
| 16 | "persistent": false, | ||
| 17 | "type": "module" | ||
| 18 | }, | ||
| 19 | |||
| 20 | "browser_action": { | ||
| 21 | "default_area": "navbar" | ||
| 22 | }, | ||
| 23 | |||
| 24 | "browser_specific_settings": { | ||
| 25 | "gecko": { | ||
| 26 | "id": "floating-cats@enes.lv" | ||
| 27 | }, | ||
| 28 | "gecko_android": { | ||
| 29 | "id": "floating-cats@enes.lv" | ||
| 30 | } | ||
| 31 | }, | ||
| 32 | |||
| 33 | "content_scripts": [{ | ||
| 34 | "css": ["/floating-cats.css"], | ||
| 35 | "matches": ["<all_urls>"], | ||
| 36 | "match_about_blank": true, | ||
| 37 | "js": ["/floating-cats.js"], | ||
| 38 | "run_at": "document_end" | ||
| 39 | }], | ||
| 40 | |||
| 41 | "options_ui": { | ||
| 42 | "browser_style": false, | ||
| 43 | "open_in_tab": true, | ||
| 44 | "page": "options/options.html" | ||
| 45 | }, | ||
| 46 | |||
| 47 | "permissions": [ | ||
| 48 | "storage" | ||
| 49 | ], | ||
| 50 | |||
| 51 | "web_accessible_resources": [ | ||
| 52 | "bobvibes.webp", | ||
| 53 | "marsey3d.webp" | ||
| 54 | ] | ||
| 55 | } | ||