first commit

This commit is contained in:
zongor 2022-09-03 23:47:22 -04:00
commit 268600e178
2 changed files with 8 additions and 0 deletions

1
README.md Executable file
View File

@ -0,0 +1 @@
This is a bookmarklet which automatically skips the credits for netflix

7
skip-intro.js Executable file
View File

@ -0,0 +1,7 @@
javascript: (function () {
setInterval(function () {
if (document.getElementsByClassName("skip-credits")[0]) {
document.getElementsByClassName("skip-credits")[0].children[0].click();
}
}, 1e3);
})();