Rhymey

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

Rhymeyとは何ですか?

RhymeyはRowan Deyselによって開発されたChromeの拡張機能で、その主な機能は「An extension that gets words that rhyme with your selected (double clicked) word. Useful for poetry.」です。

拡張機能のスクリーンショット

screenshot

Rhymey拡張機能のCRXファイルをダウンロード

Rhymey拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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 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"
    }
}