Rhymey

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

Was ist Rhymey?

Rhymey ist eine Chrome-Erweiterung, die von Rowan Deysel entwickelt wurde, und ihr Hauptmerkmal ist "An extension that gets words that rhyme with your selected (double clicked) word. Useful for poetry.".

Erweiterungsscreenshots

screenshot

Rhymey-Erweiterungs-CRX-Datei herunterladen

Laden Sie Rhymey-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Rhymey Rhymey
ID fbkmdcolngnmmhmdkhngfmdmeofipahp
Offizielle URL https://chromewebstore.google.com/detail/rhymey/fbkmdcolngnmmhmdkhngfmdmeofipahp
Beschreibung An extension that gets words that rhyme with your selected (double clicked) word. Useful for poetry.
Dateigröße 17.87 KB
Installationsanzahl 507
Aktuelle Version 1.2.1
Letztes Update 2020-04-25
Veröffentlichungsdatum 2020-04-24
Bewertung 3.88/5 Insgesamt 16 Bewertungen
Entwickler Rowan Deysel
Zahlungsart free
Unterstützte Sprachen 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"
    }
}