Skip to content

Instantly share code, notes, and snippets.

@saschanaz
Created September 1, 2018 10:34
Show Gist options
  • Save saschanaz/32b431de601375378eea2c77b811fe6e to your computer and use it in GitHub Desktop.
Save saschanaz/32b431de601375378eea2c77b811fe6e to your computer and use it in GitHub Desktop.
Laftel skip-skipper
// ==UserScript==
// @name Laftel skip-skipper
// @namespace http://saschanaz.github.io/
// @version 0.1
// @description Do not show the skip buttons
// @author Kagami Sascha Rosylight
// @match https://laftel.net/player/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
const style = document.createElement("style");
style.textContent = `.skip { display: none !important }`;
document.head.appendChild(style);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment