Skip to content

Commit

Permalink
version 1.0.68
Browse files Browse the repository at this point in the history
  • Loading branch information
Dreamlinerm committed Nov 4, 2023
1 parent b554d2d commit 44ce82b
Show file tree
Hide file tree
Showing 15 changed files with 29 additions and 17 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ All notable changes to this project will be documented in this file.
<h2>Changelog</h2>
<div>
<div class="line flex">
<h2>1.0.67</h2>
<h2>1.0.68</h2>
<ul>
<li>added Crunchyroll startPlayOnFullScreen</li>
<li>fixed bug Crunchyroll ReleaseCalendar removedDub on load</li>
Expand Down Expand Up @@ -414,7 +414,7 @@ All notable changes to this project will be documented in this file.
<h2>Changelog</h2>
<div>
<div class="line flex">
<h2>1.0.67</h2>
<h2>1.0.68</h2>
<ul>
<li>fixed Netflix ad skip: skips too far</li>
<li>added IMDB rating to Disney</li>
Expand Down
2 changes: 1 addition & 1 deletion chrome/cr.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const defaultSettings = {
},
};
let settings = defaultSettings.settings;
const version = "1.0.67";
const version = "1.0.68";
chrome.storage.sync.get("settings", function (result) {
console.log("%cNetflix%c/%cPrime%c Auto-Skip", "color: #e60010;font-size: 2em;", "color: white;font-size: 2em;", "color: #00aeef;font-size: 2em;", "color: white;font-size: 2em;");
console.log("version:", version);
Expand Down
2 changes: 1 addition & 1 deletion chrome/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 3,
"name": "__MSG_extensionName__",
"description": "__MSG_extensionDescription__",
"version": "1.0.67",
"version": "1.0.68",

"homepage_url": "https://github.com/Dreamlinerm/Netflix-Prime-Auto-Skip",
"icons": {
Expand Down
2 changes: 1 addition & 1 deletion chrome/popup/popup.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<img class="Logo" src="../icons/NetflixAmazon Auto-Skip.svg" />
<div class="flex-center flex-col">
<h2 class="title" i18n>pageTitle</h2>
<p style="color: grey; font-size: 1em">v.1.0.67</p>
<p style="color: grey; font-size: 1em">v.1.0.68</p>
</div>
</div>
<a
Expand Down
10 changes: 8 additions & 2 deletions chrome/popup/settings.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<img class="Logo" src="../icons/NetflixAmazon Auto-Skip.svg" />
<div class="flex-center flex-col">
<h2 class="title" i18n>pageTitle</h2>
<p style="font-size: 1em">v.1.0.67</p>
<p style="font-size: 1em">v.1.0.68</p>
</div>
</div>
<a
Expand Down Expand Up @@ -707,7 +707,13 @@ <h2 i18n>ImportSettings</h2>
<h2>Changelog</h2>
<div>
<div class="line flex">
<h2>1.0.67</h2>
<h2>1.0.68</h2>
<ul>
<li>Improved subtitles of Amazon and Disney</li>
</ul>
</div>
<div class="line flex">
<p>1.0.67</p>
<ul>
<li>added Crunchyroll startPlayOnFullScreen</li>
<li>fixed bug Crunchyroll ReleaseCalendar removedDub on load</li>
Expand Down
2 changes: 1 addition & 1 deletion chrome/skipper.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const isCrunchyroll = /crunchyroll/i.test(hostname);

const isEdge = /edg/i.test(ua);
// const isFirefox = /firefox/i.test(ua);
const version = "1.0.67";
const version = "1.0.68";
if (isPrimeVideo || isNetflix || isDisney || isHotstar || isCrunchyroll) {
/* eslint-env root:true */
// global variables in localStorage
Expand Down
Binary file not shown.
2 changes: 1 addition & 1 deletion firefox/cr.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const defaultSettings = {
},
};
let settings = defaultSettings.settings;
const version = "1.0.67";
const version = "1.0.68";
browser.storage.sync.get("settings", function (result) {
console.log("%cNetflix%c/%cPrime%c Auto-Skip", "color: #e60010;font-size: 2em;", "color: white;font-size: 2em;", "color: #00aeef;font-size: 2em;", "color: white;font-size: 2em;");
console.log("version:", version);
Expand Down
2 changes: 1 addition & 1 deletion firefox/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 2,
"name": "__MSG_extensionName__",
"description": "__MSG_extensionDescription__",
"version": "1.0.67",
"version": "1.0.68",
"homepage_url": "https://github.com/Dreamlinerm/Netflix-Prime-Auto-Skip",
"icons": {
"16": "icons/NetflixAmazon Auto-Skip.svg",
Expand Down
2 changes: 1 addition & 1 deletion firefox/popup/popup.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<img class="Logo" src="../icons/NetflixAmazon Auto-Skip.svg" />
<div class="flex-center flex-col">
<h2 class="title" i18n>pageTitle</h2>
<p style="color: grey; font-size: 1em">v.1.0.67</p>
<p style="color: grey; font-size: 1em">v.1.0.68</p>
</div>
</div>
<a target="_blank" class="flex-center flex-col" style="text-align: center; text-decoration: none" href="https://addons.mozilla.org/de/firefox/addon/netflix-prime-auto-skip/">
Expand Down
10 changes: 8 additions & 2 deletions firefox/popup/settings.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<img class="Logo" src="../icons/NetflixAmazon Auto-Skip.svg" />
<div class="flex-center flex-col">
<h2 class="title" i18n>pageTitle</h2>
<p style="font-size: 1em">v.1.0.67</p>
<p style="font-size: 1em">v.1.0.68</p>
</div>
</div>
<a target="_blank" class="flex-center flex-col" style="text-align: center; text-decoration: none" href="https://addons.mozilla.org/de/firefox/addon/netflix-prime-auto-skip/">
Expand Down Expand Up @@ -702,7 +702,13 @@ <h2 i18n>ImportSettings</h2>
<h2>Changelog</h2>
<div>
<div class="line flex">
<h2>1.0.67</h2>
<h2>1.0.68</h2>
<ul>
<li>Improved subtitles of Amazon and Disney</li>
</ul>
</div>
<div class="line flex">
<p>1.0.67</p>
<ul>
<li>added Crunchyroll startPlayOnFullScreen</li>
<li>fixed bug Crunchyroll ReleaseCalendar removedDub on load</li>
Expand Down
2 changes: 1 addition & 1 deletion firefox/skipper.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const isCrunchyroll = /crunchyroll/i.test(hostname);

const isEdge = /edg/i.test(ua);
// const isFirefox = /firefox/i.test(ua);
const version = "1.0.67";
const version = "1.0.68";
if (isPrimeVideo || isNetflix || isDisney || isHotstar || isCrunchyroll) {
/* eslint-env root:true */
// global variables in localStorage
Expand Down
Binary file not shown.
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": "streaming-enhanced",
"version": "1.0.67",
"version": "1.0.68",
"description": "Automatically skip Ads, Intros, Recaps, Credits, etc. on Netflix, Prime video and Disney+ & Hotstar.",
"scripts": {
"start": "web-ext run --source-dir ./firefox/",
Expand Down

0 comments on commit 44ce82b

Please sign in to comment.