AudioRead
Cansado de leer articulos? Selecciona texto y presiona la comanda que definas para reproducirlo en audio.
AudioRead là gì?
AudioRead là một tiện ích mở rộng Chrome được phát triển bởi Aral Roca, và tính năng chính của nó là "Cansado de leer articulos? Selecciona texto y presiona la comanda que definas para reproducirlo en audio.".
Tải xuống tệp CRX của tiện ích mở rộng AudioRead
Tải xuống các tệp mở rộng AudioRead dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | AudioRead |
ID | mkkjgohmfhplcabeogpampkifmmcfepk |
URL Chính Thức | https://chromewebstore.google.com/detail/audioread/mkkjgohmfhplcabeogpampkifmmcfepk |
Mô tả | Cansado de leer articulos? Selecciona texto y presiona la comanda que definas para reproducirlo en audio. |
Kích Thước Tệp | 10 KB |
Số Lần Cài Đặt | 73 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2016-12-05 |
Ngày Phát Hành | 2016-12-05 |
Đánh Giá | 3.00/5 Tổng số 6 Đánh Giá |
Nhà Phát Triển | Aral Roca |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |