Rhymey
An extension that gets words that rhyme with your selected (double clicked) word. Useful for poetry.
Rhymey là gì?
Rhymey là một tiện ích mở rộng Chrome được phát triển bởi Rowan Deysel, và tính năng chính của nó là "An extension that gets words that rhyme with your selected (double clicked) word. Useful for poetry.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Rhymey
Tải xuống các tệp mở rộng Rhymey dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Rhymey |
ID | fbkmdcolngnmmhmdkhngfmdmeofipahp |
URL Chính Thức | https://chromewebstore.google.com/detail/rhymey/fbkmdcolngnmmhmdkhngfmdmeofipahp |
Mô tả | An extension that gets words that rhyme with your selected (double clicked) word. Useful for poetry. |
Kích Thước Tệp | 17.87 KB |
Số Lần Cài Đặt | 507 |
Phiên Bản Hiện Tại | 1.2.1 |
Cập Nhật Lần Cuối | 2020-04-25 |
Ngày Phát Hành | 2020-04-24 |
Đánh Giá | 3.88/5 Tổng số 16 Đánh Giá |
Nhà Phát Triển | Rowan Deysel |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |