広告をご覧いただかなくても引き続きご利用いただけます
by
hadsn
7 hours ago [2025/12/17 09:27:00]
動画広告を見ろと迫ってくるサイトでお断りするためのブックマークレット
/*
* @title 広告をご覧いただかなくても引き続きご利用いただけます
* @description 動画広告を見ろと迫ってくるサイトでお断りするためのブックマークレット
* @include http://*
* @license MIT License
* @require
*/
javascript:(() => {
document.body.removeAttribute("class");
document.body.removeAttribute("style");
let element = Array.from(document.getElementsByClassName("fc-monetization-dialog-container"));
if (element.length > 1){
window.alert("削除対象のclassが1つではありません");
return 1;
}
else{
if(element.length != 0){
element[0].remove();
}
else{
element = document.getElementById("gn-ow-container");
if(element == null){
window.alert("削除対象のidを持つ要素がありません");
}
else{
element.remove();
}
}
}
})()
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。