// ==UserScript==
// @name birds gone somewhere
// @include https://twitter.com/intent/tweet*
// ==/UserScript==
var base = "https://social.mikutter.hachune.net/share?text=";
var url = location.href.split('?')[1].split('&');
var twtext;
var twurl
for (var i = 0; i < url.length; i++) {
var j = url[i].split('=');
if (j[0] == 'text') {
twtext = j[1];
}
if (j[0] == 'url') {
twurl = "%0D%0A" + j[1];
}
}
location.href = base + twtext + twurl;
Tampermonkeyにぐりもんぶっこんで解決した。
// ==UserScript==
// @name birds gone somewhere
// @include https://twitter.com/intent/tweet*
// ==/UserScript==
var base = "https://social.mikutter.hachune.net/share";
var url = location.href.split('tweet')[1];
location.href = base + url;
senooken JP Social is a social network, courtesy of senooken. It runs on GNU social, version 2.0.2-beta0, available under the GNU Affero General Public License.
All senooken JP Social content and data are available under the Creative Commons Attribution 3.0 license.