diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..8c8fa88 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,20 @@ +# Changelog + +All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. + +### [1.7.6](https://github.com/drodil/youtube_auto_pause/compare/v1.7.5...v1.7.6) (2024-08-06) + + +### Bug Fixes + +* standard-version scripts ([919d071](https://github.com/drodil/youtube_auto_pause/commit/919d07151ddf642dc93611310add10c32cf812f2)) + + +### Documentation + +* add mention about pre-packaged releases ([e6ca879](https://github.com/drodil/youtube_auto_pause/commit/e6ca879ea8f5f2492ec536222a7dccd7cc2e5a10)) + + +### Maintenance + +* change to use standard-version ([4e362a0](https://github.com/drodil/youtube_auto_pause/commit/4e362a0f0f7295008f210084104b3b5aa3b2009f)) diff --git a/chrome/manifest.json b/chrome/manifest.json index cbc89cf..b137ff1 100644 --- a/chrome/manifest.json +++ b/chrome/manifest.json @@ -1,8 +1,14 @@ { "name": "YouTube Auto Pause", - "version": "1.7.5", + "version": "1.7.6", "description": "Stops YouTube (+ other video services) on tab unfocus and continues on focus", - "permissions": ["tabs", "storage", "activeTab", "scripting", "idle"], + "permissions": [ + "tabs", + "storage", + "activeTab", + "scripting", + "idle" + ], "host_permissions": [ "https://*.youtube.com/*", "https://*.vimeo.com/*", @@ -38,7 +44,9 @@ "service_worker": "yt.js" }, "externally_connectable": { - "ids": ["*"], + "ids": [ + "*" + ], "matches": [ "https://*.youtube.com/*", "https://*.youtubekids.com/*", diff --git a/firefox/manifest.json b/firefox/manifest.json index 3c52c88..1f47b5f 100644 --- a/firefox/manifest.json +++ b/firefox/manifest.json @@ -1,8 +1,14 @@ { "name": "YouTube Auto Pause", - "version": "1.7.5", + "version": "1.7.6", "description": "Stops YouTube (+ other video services) on tab unfocus and continues on focus", - "permissions": ["tabs", "storage", "activeTab", "scripting", "idle"], + "permissions": [ + "tabs", + "storage", + "activeTab", + "scripting", + "idle" + ], "browser_specific_settings": { "gecko": { "id": "drodil@youtube_auto_pause", @@ -41,10 +47,14 @@ } }, "background": { - "scripts": ["yt.js"] + "scripts": [ + "yt.js" + ] }, "externally_connectable": { - "ids": ["*"], + "ids": [ + "*" + ], "matches": [ "https://*.youtube.com/*", "https://*.youtubekids.com/*", diff --git a/package-lock.json b/package-lock.json index ef1c168..778f44b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@drodil/youtube_auto_pause", - "version": "1.7.5", + "version": "1.7.6", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@drodil/youtube_auto_pause", - "version": "1.7.5", + "version": "1.7.6", "funding": [ { "type": "patreon", diff --git a/package.json b/package.json index 066f023..03c9f74 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@drodil/youtube_auto_pause", - "version": "1.7.5", + "version": "1.7.6", "homepage": "https://github.com/drodil/youtube_auto_pause", "bugs": { "url": "https://github.com/drodil/youtube_auto_pause/issues",