移除破圖
目前為
// ==UserScript==
// @name ryuryu_meta_add
// @namespace ryuryuSrcsetRemove
// @version 0.1
// @description 移除破圖
// @author oTELiNo
// @match https://ryuryu.tw*/*
// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant none
// @license MIT
// ==/UserScript==
(function() {
var meta = document.createElement('meta');
meta.httpEquiv = "Content-Security-Policy";
meta.content = "upgrade-insecure-requests";
document.getElementsByTagName('head')[0].appendChild(meta);
setTimeout(function(){
//do what you need here
}, 1000);
})();