Text Narrator
This extension narrates text on the page.
什麼是Text Narrator?
Text Narrator是由Jeffrey Yang開發的Chrome擴展程式,該擴展的主要功能是“This extension narrates text on the page.”。
擴展截圖
下載Text Narrator擴展crx文件
下載Text Narrator擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This is an open source simple text-to-speech narrator that uses Chrome's built-in Text-to-Speech API. Tested on Windows 8 and OSX so far. Please report any issues. Source code and issue tracking are available here: https://github.com/sajacy/textnarrator-chrome-extension
擴展基本資訊
名稱 | |
ID | gmachijmpknamgdoelcmkcepbjilhfoe |
官方網址 | https://chrome.google.com/webstore/detail/text-narrator/gmachijmpknamgdoelcmkcepbjilhfoe |
簡介 | This extension narrates text on the page. |
檔案大小 | 18.79 KB |
安裝次數 | 50,000 |
目前版本 | 1.0 |
更新時間 | 2014-01-20 |
上架時間 | 2014-01-20 |
評分 | 2.94/5 共 54 次評分 |
開發者 | Jeffrey Yang |
付費類型 | free |
隱私政策頁面URL | https://jyang.firebaseapp.com/what-if-analysis/privacy_policy.html |
支援的語言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Text Narrator", "description": "This extension narrates text on the page.", "version": "1.0", "background": { "scripts": [ "narrate.js", "background.js" ] }, "icons": { "16": "img\/speak16.png", "48": "img\/speak48.png", "128": "img\/speak.png" }, "permissions": [ "contextMenus", "tabs", "tts", "http:\/\/*\/", "https:\/\/*\/" ], "browser_action": { "default_icon": "img\/speak.png", "default_popup": "popup.html" } } |