Talk 2 Me
Reads highlighted text in the browser.
O que é Talk 2 Me?
Talk 2 Me é uma extensão do Chrome desenvolvida por Reece, e sua principal característica é "Reads highlighted text in the browser.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Talk 2 Me
Baixe arquivos de extensão Talk 2 Me 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
This extension adds a context menu item when text is highlighted. There is another added while text is being read. There is a shortcut with ctrl+shift+space that will start/stop reading as well. The extension reads all text across multiple lines so some formats prove troublesome (eg a reddit comment thread with small links between chunks of text). known bugs: text containing "<" will stop reading at that character (possibly other characters that are not escaped)
Informações Básicas da Extensão
Nome | Talk 2 Me |
ID | cinafiioibibecaliaehfkbkjafaakak |
URL Oficial | https://chromewebstore.google.com/detail/talk-2-me/cinafiioibibecaliaehfkbkjafaakak |
Descrição | Reads highlighted text in the browser. |
Tamanho do Arquivo | 10.62 KB |
Contagem de Instalações | 26 |
Versão Atual | 1.0.0 |
Última Atualização | 2019-11-19 |
Data de Publicação | 2019-11-18 |
Classificação | 5.00/5 Total de 2 Avaliações |
Desenvolvedor | Reece |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Talk 2 Me", "version": "1.0.0", "description": "Reads highlighted text in the browser.", "icons": { "16": "32.png", "32": "32.png", "64": "64.png", "128": "128.png" }, "commands": { "exec_T2M": { "suggested_key": { "default": "Ctrl+Shift+Space", "mac": "Command+Shift+Space" }, "description": "Execute function" }, "_execute_browser_action": { "suggested_key": { "default": "Ctrl+Shift+1", "mac": "Command+Shift+1" }, "description": "Execute function" } }, "background": { "scripts": [ "background.js" ], "persistent": true }, "options_ui": { "page": "options.html", "chrome_style": true }, "browser_action": { "default_icon": { "32": "32.png" }, "default_title": "Read highlighted text", "default_popup": "options.html" }, "permissions": [ "activeTab", "contextMenus", "storage" ] } |