Skip to content

Commit

Permalink
chore(release): 🔖 1.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
drodil committed Oct 7, 2024
1 parent 4c5ec50 commit 5976214
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 9 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@

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.10.0](https://github.com/drodil/youtube_auto_pause/compare/v1.9.2...v1.10.0) (2024-10-07)


### Features

* allow enabling/disabling for single tab ([4c5ec50](https://github.com/drodil/youtube_auto_pause/commit/4c5ec506caf9ef8766e6def3db69ccf69e5881c4))


### Maintenance

* merge firefox and chrome sources ([79219a0](https://github.com/drodil/youtube_auto_pause/commit/79219a0a6a12a91faed385e6948ab080ebb6ef9b))

### [1.9.2](https://github.com/drodil/youtube_auto_pause/compare/v1.9.1...v1.9.2) (2024-10-04)


Expand Down
14 changes: 11 additions & 3 deletions manifests/chrome.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
{
"name": "YouTube Auto Pause",
"version": "1.9.2",
"version": "1.10.0",
"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
14 changes: 11 additions & 3 deletions manifests/firefox.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
{
"name": "YouTube Auto Pause",
"version": "1.9.2",
"version": "1.10.0",
"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,7 +47,9 @@
}
},
"background": {
"scripts": ["yt.js"]
"scripts": [
"yt.js"
]
},
"commands": {
"toggle-extension": {
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.9.2",
"version": "1.10.0",
"homepage": "https://github.com/drodil/youtube_auto_pause",
"bugs": {
"url": "https://github.com/drodil/youtube_auto_pause/issues",
Expand Down

0 comments on commit 5976214

Please sign in to comment.