Greasy Fork 支持简体中文。

freeskier.com: anti blockadblock.js

This will un-hide the video widgets, which are hidden by default

  1. // ==UserScript==
  2. // @name freeskier.com: anti blockadblock.js
  3. // @namespace https://github.com/gorhill/uBlock
  4. // @version 0.1
  5. // @description This will un-hide the video widgets, which are hidden by default
  6. // @author gorhill
  7. // @match http://freeskier.com/videos/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. ;(function() {
  12. 'use strict';
  13.  
  14. var el = document.getElementById("adb-not-enabled");
  15. if ( el !== null ) {
  16. el.style.removeProperty("display");
  17. }
  18. el = document.getElementById("videoContainer");
  19. if ( el !== null ) {
  20. el.style.removeProperty("display");
  21. }
  22. })();