Rhymey
An extension that gets words that rhyme with your selected (double clicked) word. Useful for poetry.
O que é Rhymey?
Rhymey é uma extensão do Chrome desenvolvida por Rowan Deysel, e sua principal característica é "An extension that gets words that rhyme with your selected (double clicked) word. Useful for poetry.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Rhymey
Baixe arquivos de extensão Rhymey no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Rhymey |
ID | fbkmdcolngnmmhmdkhngfmdmeofipahp |
URL Oficial | https://chromewebstore.google.com/detail/rhymey/fbkmdcolngnmmhmdkhngfmdmeofipahp |
Descrição | An extension that gets words that rhyme with your selected (double clicked) word. Useful for poetry. |
Tamanho do Arquivo | 17.87 KB |
Contagem de Instalações | 507 |
Versão Atual | 1.2.1 |
Última Atualização | 2020-04-25 |
Data de Publicação | 2020-04-24 |
Classificação | 3.88/5 Total de 16 Avaliações |
Desenvolvedor | Rowan Deysel |
Tipo de Pagamento | free |
Idiomas Suportados | 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" } } |