diff options
author | Ajay Ramachandran <[email protected]> | 2019-07-26 20:26:29 -0400 |
---|---|---|
committer | GitHub <[email protected]> | 2019-07-26 20:26:29 -0400 |
commit | 64be41b008fdeeadc1d0d4331c59bd67f3e6a53d (patch) | |
tree | b3b8c18b6cb848e603a821353fbcdd76184f7885 | |
parent | 5436a1651e12a62105f3580ce93cfe05d0e518ec (diff) | |
parent | b3684a8730de6901b7e45896827e2e42622e64a8 (diff) | |
download | SponsorBlock-64be41b008fdeeadc1d0d4331c59bd67f3e6a53d.tar.gz SponsorBlock-64be41b008fdeeadc1d0d4331c59bd67f3e6a53d.zip |
Merge pull request #25 from ajayyy/experimentalv1.0.7
Fixed old unsponsored times sometimes being used
-rw-r--r-- | content.js | 4 | ||||
-rw-r--r-- | firefox_manifest.json | 2 | ||||
-rw-r--r-- | manifest.json | 2 | ||||
-rw-r--r-- | popup.html | 4 |
4 files changed, 9 insertions, 3 deletions
@@ -121,6 +121,10 @@ function videoIDChange(id) { lastTime = -1; lastUnixTimeSkipped = -1; + //reset sponsor times + sponsorTimes = undefined; + UUIDs = undefined; + //reset sponsor data found check sponsorDataFound = false; sponsorsLookup(id); diff --git a/firefox_manifest.json b/firefox_manifest.json index 8020aa36..e334b555 100644 --- a/firefox_manifest.json +++ b/firefox_manifest.json @@ -1,7 +1,7 @@ { "name": "SponsorBlock - YouTube Sponsorship Blocker", "short_name": "SponsorBlock", - "version": "1.0.6", + "version": "1.0.7", "description": "Skip over sponsorship on YouTube videos. Report sponsors on videos you watch to save the time of others.", "content_scripts": [ { diff --git a/manifest.json b/manifest.json index bfecefba..10ca8fa1 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "name": "SponsorBlock - YouTube Sponsorship Blocker", "short_name": "SponsorBlock", - "version": "1.0.6", + "version": "1.0.7", "description": "Skip over sponsorship on YouTube videos. Report sponsors on videos you watch to save the time of others.", "content_scripts": [ { @@ -71,7 +71,9 @@ <div> <button id="sponsorStart" class="greenButton">Sponsorship Starts Now</button> </div> - + + <sub>Hint: Press the semicolon key while focused on a video report the start/end of a sponsor and quote to submit.</sub> + <div id="submissionSection" style="display: none"> <h3>Latest Sponsor Message Times Chosen</h3> <b> |