俺にスターつけてくれた人のブコメはどれ?
by
Lhankor_Mhy
2022-09-07 [2022/09/07 11:04:29]
エントリページで動作します。
@@ -6,9 +6,8 @@
* @require
*/
-
-Array.prototype.forEach.call(document.querySelectorAll('.self .hatena-star-star'), function(e){
- var target = document.querySelector('#all-bookmarks [data-user=' + e.getAttribute('alt') + ']');
- console.log(target);
+document.querySelectorAll('.is-my-bookmark .hatena-star-star').forEach(function(e){
+ var target = document.querySelector('.js-bookmarks-sort-panels [data-user-name=' + e.getAttribute('alt') + ']');
+ console.log(e.getAttribute('alt'));
if (target) target.style.backgroundColor = '#ff9';
-})
+})
/*
* @title 俺にスターつけてくれた人のブコメはどれ?
* @description エントリページで動作します。
* @include http://http://b.hatena.ne.jp/entry/*
* @license MIT License
* @require
*/
document.querySelectorAll('.is-my-bookmark .hatena-star-star').forEach(function(e){
var target = document.querySelector('.js-bookmarks-sort-panels [data-user-name=' + e.getAttribute('alt') + ']');
console.log(e.getAttribute('alt'));
if (target) target.style.backgroundColor = '#ff9';
})
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。