Thaana Qaafu

Designed for OWOT users to paste the thaana qaafu symbol.

  1. // ==UserScript==
  2. // @name Thaana Qaafu
  3. // @namespace http://tampermonkey.net/
  4. // @version 2024-10-29newfeature_bold2
  5. // @description Designed for OWOT users to paste the thaana qaafu symbol.
  6. // @author Out
  7. // @match *ourworldoftext.com/*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=ourworldoftext.com
  9. // @grant none
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13. // assuming all functions are defined
  14. /*thaana qaafu*/
  15. !function(){
  16. function thaanaqaafu(){
  17. OWOT.typeChar(String.fromCharCode(1956),true,YourWorld.Color,true,true,YourWorld.BgColor,false,false,false);
  18. }
  19. function thaanaqaafubold(){
  20. OWOT.typeChar(String.fromCharCode(1956),true,YourWorld.Color,true,true,YourWorld.BgColor,true,false,false);
  21. }
  22. menu.addOption(String.fromCharCode(1956),()=>{
  23. thaanaqaafu()
  24. })
  25. menu.addOption("bold "+String.fromCharCode(1956),()=>{
  26. thaanaqaafubold()
  27. })
  28. }();