AudioRead
Cansado de leer articulos? Selecciona texto y presiona la comanda que definas para reproducirlo en audio.
What is AudioRead?
AudioRead is a Chrome extension developed by Aral Roca, and its main feature is "Cansado de leer articulos? Selecciona texto y presiona la comanda que definas para reproducirlo en audio.".
Download AudioRead Extension CRX File
Download AudioRead extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Selecciona texto y pulsa la combinación de teclas que configures para reproducir, parar, pausar, etc el texto en audio. Disponible de momento en Español, Inglès y Catalan.
Extension Basic Information
Name | AudioRead |
ID | mkkjgohmfhplcabeogpampkifmmcfepk |
Official URL | https://chromewebstore.google.com/detail/audioread/mkkjgohmfhplcabeogpampkifmmcfepk |
Description | Cansado de leer articulos? Selecciona texto y presiona la comanda que definas para reproducirlo en audio. |
File Size | 10 KB |
Installation Count | 73 |
Current Version | 1.0 |
Last Updated | 2016-12-05 |
Publish Date | 2016-12-05 |
Rating | 3.00/5 Total 6 Ratings |
Developer | Aral Roca |
[email protected] | |
Payment Type | free |
Supported Languages | es |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "AudioRead", "description": "Cansado de leer articulos? Selecciona texto y presiona la comanda que definas para reproducirlo en audio.", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon.png" }, "version": "1.0", "background": { "scripts": [ "background.js" ] }, "commands": { "start": { "suggested_key": { "default": "Ctrl+Shift+L", "mac": "Command+Shift+L" }, "description": "start audio", "shortcut": "Command+Shift+L", "global": true }, "stop": { "suggested_key": { "default": "Ctrl+Shift+P", "mac": "Command+Shift+P" }, "description": "stop audio", "shortcut": "Command+Shift+P", "global": true }, "pause": { "suggested_key": { "default": "Ctrl+Shift+O", "mac": "Command+Shift+O" }, "description": "pause audio", "shortcut": "Command+Shift+O", "global": true }, "resume": { "suggested_key": { "default": "Ctrl+Shift+P", "mac": "Command+Shift+P" }, "description": "resume audio", "shortcut": "Command+Shift+P", "global": true } }, "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "permissions": [ "background", "tabs", "http:\/\/*\/*", "https:\/\/*\/*", "activeTab", "tts", "storage" ] } |