Rhymey
An extension that gets words that rhyme with your selected (double clicked) word. Useful for poetry.
什麼是Rhymey?
Rhymey是由Rowan Deysel開發的Chrome擴展程式,該擴展的主要功能是“An extension that gets words that rhyme with your selected (double clicked) word. Useful for poetry.”。
擴展截圖
下載Rhymey擴展crx文件
下載Rhymey擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Rhymey display words that rhyme with the word you double clicked on (even inside of Google based pages) Very useful for writing poetry when in inspired mode! - Please note that the selected word has to be at least 3 characters long. - Rhymey uses the lovely datamuse api (https://www.datamuse.com/api/) - Github here: https://github.com/goatonabicycle/Rhymey Please feel free to give feedback and suggestions.
擴展基本資訊
名稱 | Rhymey |
ID | fbkmdcolngnmmhmdkhngfmdmeofipahp |
官方網址 | https://chromewebstore.google.com/detail/rhymey/fbkmdcolngnmmhmdkhngfmdmeofipahp |
簡介 | An extension that gets words that rhyme with your selected (double clicked) word. Useful for poetry. |
檔案大小 | 17.87 KB |
安裝次數 | 507 |
目前版本 | 1.2.1 |
更新時間 | 2020-04-25 |
上架時間 | 2020-04-24 |
評分 | 3.88/5 共 16 次評分 |
開發者 | Rowan Deysel |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Rhymey", "short_name": "Rhymey", "description": "An extension that gets words that rhyme with your selected (double clicked) word. Useful for poetry.", "version": "1.2.1", "manifest_version": 2, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "http:\/\/localhost\/*" ], "js": [ "js\/content.js" ], "css": [ "css\/custom.css" ], "run_at": "document_idle" }, { "js": [ "js\/googleDocsUtil.js" ], "matches": [ "https:\/\/docs.google.com\/document\/*", "https:\/\/mail.google.com\/mail\/*" ], "run_at": "document_idle" } ], "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" } } |