Rhymey
An extension that gets words that rhyme with your selected (double clicked) word. Useful for poetry.
Rhymey क्या है?
Rhymey Rowan Deysel द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "An extension that gets words that rhyme with your selected (double clicked) word. Useful for poetry."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Rhymey एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" } } |