Skip to content

Commit

Permalink
v1.0.20
Browse files Browse the repository at this point in the history
  • Loading branch information
Dreamlinerm committed Jan 31, 2023
1 parent 914af99 commit 158163c
Show file tree
Hide file tree
Showing 8 changed files with 6 additions and 6 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.19",
"version": "1.0.20",

"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/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.19</p>
<p style="color: grey; font-size: 1em">Version: 1.0.20</p>
</div>
</div>
</div>
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.19";
const version = "1.0.20";

if (isVideo || isNetflix) {
// global variables in localStorage
Expand Down
Binary file not shown.
2 changes: 1 addition & 1 deletion firefox/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 2,
"name": "Netflix/Prime Auto-Skip",
"version": "1.0.19",
"version": "1.0.20",

"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 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.19</p>
<p style="color: grey; font-size: 1em">Version: 1.0.20</p>
</div>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion firefox/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.19";
const version = "1.0.20";

if (isVideo || isNetflix) {
// global variables in localStorage
Expand Down
Binary file not shown.

0 comments on commit 158163c

Please sign in to comment.