您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Twiiterのポストするボタンをエックスするボタンに変更する。
// ==UserScript== // @name ポストするボタンをツイートするボタンに変更 // @namespace https://twitter.com/yosshi9990 // @version 1.0 // @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); })();