YSSS↺
by
noromanba
2016-03-03 [2016/03/03 05:57:14]
auto-reload Yahoo social stream search
/*
* @title YSSS↺
* @description auto-refresh Yahoo social stream search
* @include http://realtime.search.yahoo.co.jp/search?*
* @license MIT License http://opensource.org/licenses/MIT
* @javascript_url
*/
// Yahoo realtime search
// http://let.hatelabo.jp/noromanba/let/gYC-yoDbprDzbQ
(() => {
const button = document.body.querySelector('#srt_TSk_1 a[href][class]');
if (!button) return;
const reload = () => {
if (button.classList.contains('off')) {
window.YAHOO.JP.srch.rt.toggleScroll();
}
};
reload();
new MutationObserver(() => {
reload();
}).observe(button, { attributes: true, attributeFilter: ['class'] });
})();
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。