Rhymey
An extension that gets words that rhyme with your selected (double clicked) word. Useful for poetry.
Qu'est-ce que Rhymey ?
Rhymey est une extension Chrome développée par Rowan Deysel, et sa fonction principale est "An extension that gets words that rhyme with your selected (double clicked) word. Useful for poetry.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Rhymey
Téléchargez les fichiers d'extension Rhymey au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Rhymey |
ID | fbkmdcolngnmmhmdkhngfmdmeofipahp |
URL Officiel | https://chromewebstore.google.com/detail/rhymey/fbkmdcolngnmmhmdkhngfmdmeofipahp |
Description | An extension that gets words that rhyme with your selected (double clicked) word. Useful for poetry. |
Taille du Fichier | 17.87 KB |
Nombre d'Installations | 507 |
Version Actuelle | 1.2.1 |
Dernière Mise à Jour | 2020-04-25 |
Date de Publication | 2020-04-24 |
Évaluation | 3.88/5 Total 16 Évaluations |
Développeur | Rowan Deysel |
Type de Paiement | free |
Langues Prises en Charge | 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" } } |