Skip to content

Commit

Permalink
chore(release): 🔖 1.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
drodil committed Oct 3, 2024
1 parent c768126 commit 0585144
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 7 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

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.9.0](https://github.com/drodil/youtube_auto_pause/compare/v1.8.0...v1.9.0) (2024-10-03)


### Features

* ff support for gray icon ([c768126](https://github.com/drodil/youtube_auto_pause/commit/c768126311a7f16a3cc402d0d3a315805c9957b2))
* turn icon to gray when extension not active ([7f1c00c](https://github.com/drodil/youtube_auto_pause/commit/7f1c00c003b68140e41610c19385cae52611c3be)), closes [#13](https://github.com/drodil/youtube_auto_pause/issues/13)

## [1.8.0](https://github.com/drodil/youtube_auto_pause/compare/v1.7.7...v1.8.0) (2024-09-18)


Expand Down
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.8.0",
"version": "1.9.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
2 changes: 1 addition & 1 deletion firefox/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "YouTube Auto Pause",
"version": "1.8.0",
"version": "1.9.0",
"description": "Stops YouTube (+ other video services) on tab unfocus and continues on focus",
"permissions": [
"tabs",
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.8.0",
"version": "1.9.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 0585144

Please sign in to comment.