diff --git a/chrome/manifest.json b/chrome/manifest.json index 64793bae..a37e7532 100644 --- a/chrome/manifest.json +++ b/chrome/manifest.json @@ -2,7 +2,7 @@ "manifest_version": 3, "name": "__MSG_extensionName__", "description": "__MSG_extensionDescription__", - "version": "1.0.52", + "version": "1.0.53", "homepage_url": "https://github.com/Dreamlinerm/Netflix-Prime-Auto-Skip", "icons": { diff --git a/chrome/popup/popup.html b/chrome/popup/popup.html index 562b6567..ec44f38e 100644 --- a/chrome/popup/popup.html +++ b/chrome/popup/popup.html @@ -29,7 +29,7 @@

pageTitle

-

v.1.0.52

+

v.1.0.53

ImportSettings

Changelog

-

1.0.52

+

1.0.53

  • Fixed Netflix Ad skip due to changed css classes of Netflix
diff --git a/chrome/skipper.js b/chrome/skipper.js index f1b3f996..e33bce07 100644 --- a/chrome/skipper.js +++ b/chrome/skipper.js @@ -23,7 +23,7 @@ let isHotstar = /hotstar/i.test(hostname); let isEdge = /edg/i.test(ua); let isFirefox = /firefox/i.test(ua); -const version = "1.0.52"; +const version = "1.0.53"; if (isPrimeVideo || isNetflix || isDisney || isHotstar) { // global variables in localStorage const defaultSettings = { diff --git a/firefox/manifest.json b/firefox/manifest.json index 197aa374..e38bab1b 100644 --- a/firefox/manifest.json +++ b/firefox/manifest.json @@ -2,7 +2,7 @@ "manifest_version": 2, "name": "__MSG_extensionName__", "description": "__MSG_extensionDescription__", - "version": "1.0.52", + "version": "1.0.53", "homepage_url": "https://github.com/Dreamlinerm/Netflix-Prime-Auto-Skip", "icons": { "16": "icons/NetflixAmazon Auto-Skip.svg", diff --git a/firefox/popup/popup.html b/firefox/popup/popup.html index a49a9326..75babf23 100644 --- a/firefox/popup/popup.html +++ b/firefox/popup/popup.html @@ -29,7 +29,7 @@

pageTitle

-

v.1.0.52

+

v.1.0.53

diff --git a/firefox/popup/settings.css b/firefox/popup/settings.css index e799c4f5..7644191d 100644 --- a/firefox/popup/settings.css +++ b/firefox/popup/settings.css @@ -26,7 +26,7 @@ h6 { html, body, .content { - /* width: 400px; */ + min-width: 400px; background-color: #212121; } body { diff --git a/firefox/popup/settings.html b/firefox/popup/settings.html index c088bf4e..c856818f 100644 --- a/firefox/popup/settings.html +++ b/firefox/popup/settings.html @@ -30,7 +30,7 @@

pageTitle

-

v.1.0.52

+

v.1.0.53

@@ -425,7 +425,7 @@

ImportSettings

Changelog

-

1.0.52

+

1.0.53

  • Fixed Netflix Ad skip due to changed css classes of Netflix
diff --git a/firefox/skipper.js b/firefox/skipper.js index ddeb5464..6a4d42bd 100644 --- a/firefox/skipper.js +++ b/firefox/skipper.js @@ -23,7 +23,7 @@ let isHotstar = /hotstar/i.test(hostname); let isEdge = /edg/i.test(ua); let isFirefox = /firefox/i.test(ua); -const version = "1.0.52"; +const version = "1.0.53"; if (isPrimeVideo || isNetflix || isDisney || isHotstar) { // global variables in localStorage const defaultSettings = { diff --git a/package-lock.json b/package-lock.json index 40711340..41e5acbd 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "streaming-enhanced", - "version": "1.0.52", + "version": "1.0.53", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "streaming-enhanced", - "version": "1.0.52", + "version": "1.0.53", "license": "weaklyProtective" } } diff --git a/package.json b/package.json index 15f19f01..a037d6f7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "streaming-enhanced", - "version": "1.0.52", + "version": "1.0.53", "description": "Automatically skip Ads, Intros, Recaps, Credits, etc. on Netflix, Prime video and Disney+ & Hotstar.", "scripts": { "start": "web-ext run --source-dir ./firefox/",