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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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" } } |