remove all iframe/script
by
xtetsuji
2013-02-08 [2013/02/08 19:23:45]
iframeとscriptの要素を全消去。Buggyで暴走しているページの沈静化用。
-
/*
* @title remove all iframe/script
* @description iframeとscriptの要素を全消去。Buggyで暴走しているページの沈静化用。
* @include http://*
* @license MIT License
* @require
*/
["iframe", "script"].forEach(function(elem_name){
Array.prototype.forEach.call(document.querySelectorAll(elem_name), function(elem){ elem.remove(); });
});
void(0);
-
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。