ポストするボタンをエックスするボタンに変更

Twiiterのツイートするボタンをエックスするボタンに変更する。

// ==UserScript==
// @name         ポストするボタンをエックスするボタンに変更
// @namespace    https://twitter.com/yosshi9990
// @version      1.1
// @description  Twiiterのツイートするボタンをエックスするボタンに変更する。
// @author       元祖のヨッシー
// @match        *://twitter.com/*
// @grant        none
// @compatible   vivaldi
// @compatible   chrome
// @compatible   firefox
// @compatible   edge
// @icon https://abs.twimg.com/responsive-web/client-web/icon-ios.b1fc727a.png
// @supportURL   https://twitter.com/messages/compose?recipient_id=1183000451714703361
// @contributionURL https://www.youtube.com/@gansonoyoshi?sub_confirmation=1
// @license MIT
// ==/UserScript==

(function() {
    window.setInterval(function(){
        let elements = document.querySelectorAll('*');
        const filterElements = Array.from(elements)
        .filter((element)=> element.textContent === 'ポストする');
        filterElements[7].textContent="エックスする";
    }, 500);
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址