diff options
| -rw-r--r-- | README.md | 5 | ||||
| -rw-r--r-- | manifest.json | 31 |
2 files changed, 20 insertions, 16 deletions
@@ -8,4 +8,7 @@ Based on [Krazete's ytlivestamper bookmarklet](https://github.com/Krazete/bookma - Export timestamps to text, YouTube links, or Markdown - Adjustable offset to add context to timestamps -[]
\ No newline at end of file +[] + +# Installation +Please follow the instructions in the [Releases](https://github.com/pinapelz/yt-quickstamper/releases) section 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 +} |
