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 |
官方URL | 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" } } |