Rhymey
An extension that gets words that rhyme with your selected (double clicked) word. Useful for poetry.
Что такое Rhymey?
Rhymey - это расширение Chrome, разработанное Rowan Deysel, и его основная функция - "An extension that gets words that rhyme with your selected (double clicked) word. Useful for poetry.".
Снимки экрана расширения
Скачать файл CRX расширения Rhymey
Скачайте файлы расширений 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 |
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" } } |