diff options
| author | Pinapelz <yukais@pinapelz.com> | 2024-10-11 19:13:50 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2024-10-11 19:13:50 -0700 |
| commit | 57383e9c26f315bcfd8cacf27aa56f8a762e3481 (patch) | |
| tree | 794e97ed2056ace485672ecf0f3d6bb0440d04f5 /manifest.json | |
| parent | cc272b1e415c362d3362ae0dc37a839b2b67263f (diff) | |
add gecko id to manifest file
Diffstat (limited to 'manifest.json')
| -rw-r--r-- | manifest.json | 31 |
1 files changed, 16 insertions, 15 deletions
diff --git a/manifest.json b/manifest.json index 418a778..77a8f55 100644 --- a/manifest.json +++ b/manifest.json @@ -3,24 +3,25 @@ "name": "QuickStamper", "version": "1.0", "description": "A tool for generating timestamps on YouTube videos or livestreams", - "permissions": [ - "activeTab", - "scripting", - "clipboardWrite" - ], + "browser_specific_settings": { + "gecko": { + "id": "ytquickstamper@pinapelz.com" + } + }, + "permissions": ["activeTab", "scripting", "clipboardWrite"], "icons": { - "48": "icons/icon.png" + "48": "icons/icon.png" }, "action": { - "default_popup": "popup.html", - "default_icon": { - "48": "icons/icon.png" - } + "default_popup": "popup.html", + "default_icon": { + "48": "icons/icon.png" + } }, "web_accessible_resources": [ - { - "resources": ["styles.css"], - "matches": ["<all_urls>"] - } + { + "resources": ["styles.css"], + "matches": ["<all_urls>"] + } ] -}
\ No newline at end of file +} |
