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 |
公式URL | 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" } } |