診断メーカー内のハッシュタグ検索をTwitterの検索に置き換えてくれます。長期間のエゴサ用に。
目前為
// ==UserScript==
// @name ShindanmakerHashtag"SoT"Script
// @namespace https://twitter.com/KamakuraChannel
// @description 診断メーカー内のハッシュタグ検索をTwitterの検索に置き換えてくれます。長期間のエゴサ用に。
// @match https://shindanmaker.com/*
// @author カマクラ (Kamakura)
// @version 1.1
// @grant none
// ==/UserScript==
// スクリプト名の"SoT"とはSearch on Twitterのことです。
(function () {
let links = document.querySelectorAll('a.hashtaglabel');
if (links) {
let tag = [];
links.forEach(function(v,i) {
tag[i] = v.getAttribute('href').split('?sw=%23')[1];
v.setAttribute('href', 'https://www.twitter.com/hashtag/' + tag[i] + '?src=hash');
v.setAttribute('target', '_blank');
});
}
}) ();