您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Designed for OWOT users to paste the thaana qaafu symbol.
- // ==UserScript==
- // @name Thaana Qaafu
- // @namespace http://tampermonkey.net/
- // @version 2024-10-29newfeature_bold2
- // @description Designed for OWOT users to paste the thaana qaafu symbol.
- // @author Out
- // @match *ourworldoftext.com/*
- // @icon https://www.google.com/s2/favicons?sz=64&domain=ourworldoftext.com
- // @grant none
- // @license MIT
- // ==/UserScript==
- // assuming all functions are defined
- /*thaana qaafu*/
- !function(){
- function thaanaqaafu(){
- OWOT.typeChar(String.fromCharCode(1956),true,YourWorld.Color,true,true,YourWorld.BgColor,false,false,false);
- }
- function thaanaqaafubold(){
- OWOT.typeChar(String.fromCharCode(1956),true,YourWorld.Color,true,true,YourWorld.BgColor,true,false,false);
- }
- menu.addOption(String.fromCharCode(1956),()=>{
- thaanaqaafu()
- })
- menu.addOption("bold "+String.fromCharCode(1956),()=>{
- thaanaqaafubold()
- })
- }();