Greasy Fork is available in English.

KokyakuGaHontouNiHitsuyoudattaMono

try to take over the world!

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください。
// ==UserScript==
// @name         KokyakuGaHontouNiHitsuyoudattaMono
// @namespace    http://hitoriblog.com/
// @version      0.2
// @description  try to take over the world!
// @author       moyashi
// @include      https://twitter.com/*
// @grant        none
// ==/UserScript==
$(document).ready(function () {
    var currentUser = $(".current-user a").attr("href");
    var buttonMoments = $('.js-global-actions li.moments');
    buttonMoments.find("a").attr("href", currentUser + "/moments");
    buttonMoments.find("a span.text").text("マイモーメント");

    var buttonList = $('.js-global-actions li.moments').clone(true);
    buttonList.find("a").attr("href", "/lists");
    buttonList.find("a span.text").text("リスト");
    buttonList.find("[class^='Icon']").removeClass("Icon--lightning");
    buttonList.find("[class^='Icon']").addClass("Icon--list");

    buttonList.appendTo($('.js-global-actions'));
    buttonMoments.appendTo($('.js-global-actions'));

});