2 changed files with 9 additions and 0 deletions
@ -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." |
@ -0,0 +1,4 @@ |
|||||
|
javascript: (function () { |
||||
|
var video = document.querySelector("video"); |
||||
|
video.currentTime = video.duration; |
||||
|
})(); |
Loading…
Reference in new issue