AudioRead
Cansado de leer articulos? Selecciona texto y presiona la comanda que definas para reproducirlo en audio.
Wat is AudioRead?
AudioRead is een Chrome-extensie ontwikkeld door Aral Roca, en de belangrijkste functie is "Cansado de leer articulos? Selecciona texto y presiona la comanda que definas para reproducirlo en audio.".
Download het CRX-bestand van de extensie AudioRead
Download AudioRead-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | AudioRead |
ID | mkkjgohmfhplcabeogpampkifmmcfepk |
Officiële URL | https://chromewebstore.google.com/detail/audioread/mkkjgohmfhplcabeogpampkifmmcfepk |
Beschrijving | Cansado de leer articulos? Selecciona texto y presiona la comanda que definas para reproducirlo en audio. |
Bestandsgrootte | 10 KB |
Aantal Installaties | 73 |
Huidige Versie | 1.0 |
Laatst Bijgewerkt | 2016-12-05 |
Publicatiedatum | 2016-12-05 |
Beoordeling | 3.00/5 Totaal 6 Beoordelingen |
Ontwikkelaar | Aral Roca |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } |