点击油猴菜单后弹出输入框,输入Twitter账号ID后打开主页
// ==UserScript==
// @name 推特主页直达(菜单触发)
// @namespace http://tampermonkey.net/
// @version 1.2
// @description 点击油猴菜单后弹出输入框,输入Twitter账号ID后打开主页
// @match *://*/*
// @grant GM_registerMenuCommand
// ==/UserScript==
(function() {
'use strict';
// 注册菜单项
GM_registerMenuCommand("🔗 打开推特主页", function() {
const id = prompt("请输入推特账号ID(例如:mimmi_sak)");
if (id) {
const cleanId = id.replace(/^@/, '').trim();
window.open("https://twitter.com/" + cleanId, "_blank");
}
});
})();