Rhymey
An extension that gets words that rhyme with your selected (double clicked) word. Useful for poetry.
Rhymeyคืออะไร?
Rhymey เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Rowan Deysel และคุณลักษณะหลักของมันคือ "An extension that gets words that rhyme with your selected (double clicked) word. Useful for poetry."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Rhymey
ดาวน์โหลดไฟล์ส่วนขยาย 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" } } |