Browse Source

created

develop
Rob Colbert 6 months ago
parent
commit
e9e4763685
  1. 5
      README.md
  2. 4
      adskip.js

5
README.md

@ -0,0 +1,5 @@
# adskip
A JavaScript scriptlet for use as a browser toolbar button to skip the currently playing video on a page. It just happens to be useful for skipping YouTube ads and similar by finding the first playing video on a page, and slamming its current position to the end of the file in one simple button click.
"Video will play shortly," becomes, "Video will play now, bitch. Shut up."

4
adskip.js

@ -0,0 +1,4 @@
javascript: (function () {
var video = document.querySelector("video");
video.currentTime = video.duration;
})();
Loading…
Cancel
Save