Rhymey

An extension that gets words that rhyme with your selected (double clicked) word. Useful for poetry.

Wat is Rhymey?

Rhymey is een Chrome-extensie ontwikkeld door Rowan Deysel, en de belangrijkste functie is "An extension that gets words that rhyme with your selected (double clicked) word. Useful for poetry.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Rhymey

Download Rhymey-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Rhymey Rhymey
ID fbkmdcolngnmmhmdkhngfmdmeofipahp
Officiële URL https://chromewebstore.google.com/detail/rhymey/fbkmdcolngnmmhmdkhngfmdmeofipahp
Beschrijving An extension that gets words that rhyme with your selected (double clicked) word. Useful for poetry.
Bestandsgrootte 17.87 KB
Aantal Installaties 507
Huidige Versie 1.2.1
Laatst Bijgewerkt 2020-04-25
Publicatiedatum 2020-04-24
Beoordeling 3.88/5 Totaal 16 Beoordelingen
Ontwikkelaar Rowan Deysel
Betalingswijze free
Ondersteunde Talen 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"
    }
}