ライブドアブログ 未使用画像にチェック
by
kenafad
2019-02-15 [2019/02/15 12:23:27]
-
/*
* @title ライブドアブログ 未使用画像にチェック
* @description
* @include http://livedoor.blogcms.jp/*
* @license MIT License
* @javascript_url
*/
(function(){
var tr = document.getElementsByClassName('thumbnail');
for(var i = 0;i < tr.length;i++){
if(tr[i].querySelector('td:nth-last-child(2)>a') != null){
tr[i].querySelector('input.entryId').removeAttribute('checked');
}else{
tr[i].querySelector('input.entryId').setAttribute('checked', 'checked');
}
}
document.getElementById('meditForm').mode.value = 'delete';
document.getElementById('meditBottun').click();
})();
-
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。