getSynonyms
類義語を表示用のTamperMonkeyスクリプト
WordsAPIのAPIのKeyを取得して↓にはめてください
code:Tampermonkey用.js
// ==UserScript==
// @name New Userscript
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://scrapbox.io/*
// @grant GM_xmlhttpRequest
// ==/UserScript==
;(function () {
"use strict"
unsafeWindow.getSynonyms = (word) => {
const url = new URL("https://wordsapiv1.p.rapidapi.com/words/" + word + "/synonyms");
return new Promise((r) => {
GM_xmlhttpRequest({
method: "GET",
url,
headers: {"X-RapidAPI-Key": "YOUR API KEY HERE"}, //ここに自分のAPI Keyを入れてください
onload: (res) => r(res),
withCredentials: true,
responseType: "json",
})
})
}
// Your code here...
})()