Skip to content

Instantly share code, notes, and snippets.

@salty-godzilla
Created April 16, 2019 11:07
Show Gist options
  • Save salty-godzilla/8845f250042108e8380dcb78c2ad0193 to your computer and use it in GitHub Desktop.
Save salty-godzilla/8845f250042108e8380dcb78c2ad0193 to your computer and use it in GitHub Desktop.
過去問道場anti-adblock
// ==UserScript==
// @name 過去問道場anti-adblock
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://www.fe-siken.com/*
// @match https://www.ap-siken.com/*
// @grant none
// @require https://code.jquery.com/jquery-3.3.1.min.js
// @require https://code.jquery.com/ui/1.12.1/jquery-ui.min.js
// ==/UserScript==
(function() {
'use strict';
setInterval(function(){
$(".ansbg").css("cssText", "opacity: 1 !important;");
},500);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment