Skip to content

Commit

Permalink
chore(release): 🔖 1.7.6
Browse files Browse the repository at this point in the history
  • Loading branch information
drodil committed Aug 6, 2024
1 parent 919d071 commit 67f37cb
Show file tree
Hide file tree
Showing 5 changed files with 48 additions and 10 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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))
14 changes: 11 additions & 3 deletions chrome/manifest.json
Original file line number Diff line number Diff line change
@@ -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/*",
Expand Down Expand Up @@ -38,7 +44,9 @@
"service_worker": "yt.js"
},
"externally_connectable": {
"ids": ["*"],
"ids": [
"*"
],
"matches": [
"https://*.youtube.com/*",
"https://*.youtubekids.com/*",
Expand Down
18 changes: 14 additions & 4 deletions firefox/manifest.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -41,10 +47,14 @@
}
},
"background": {
"scripts": ["yt.js"]
"scripts": [
"yt.js"
]
},
"externally_connectable": {
"ids": ["*"],
"ids": [
"*"
],
"matches": [
"https://*.youtube.com/*",
"https://*.youtubekids.com/*",
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down

0 comments on commit 67f37cb

Please sign in to comment.