Skip to content

Commit

Permalink
updated chrome to version 1.0.11
Browse files Browse the repository at this point in the history
  • Loading branch information
Dreamlinerm committed Aug 30, 2022
1 parent 3c9c515 commit 7c3e6ce
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion chrome/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 3,
"name": "Netflix/Prime Auto-Skip",
"version": "1.0.10",
"version": "1.0.11",

"description": "Automatically skip Ads, intros, Recaps, Credits, etc. on Netflix and Prime video.",
"homepage_url": "https://github.com/Dreamlinerm/Netflix-Prime-Auto-Skip",
Expand Down
2 changes: 1 addition & 1 deletion chrome/skipper.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ let url = window.location.href;
let isAmazon = /amazon|primevideo/i.test(hostname);
let isVideo = /video/i.test(title) || /video/i.test(url);
let isNetflix = /netflix/i.test(hostname);
const version = "1.0.10";
const version = "1.0.11";

if (isVideo || isNetflix) {
// global variables in localStorage
Expand Down
2 changes: 1 addition & 1 deletion firefox/popup/settings.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<img src="../icons/NetflixAmazon Auto-Skip.svg" />
<div class="flex-center flex-col">
<h2 class="title">Auto-skip</h2>
<p style="color: grey; font-size: 1em">Version: 1.0.10</p>
<p style="color: grey; font-size: 1em">Version: 1.0.11</p>
</div>
</div>
</div>
Expand Down

0 comments on commit 7c3e6ce

Please sign in to comment.