Page to Speech
This extension will produce English speech to whatever text you highlight on a webpage.Highlight text and click the extension's icon
Page to Speechとは何ですか?
Page to Speechはhttps://www.dimoff.bizによって開発されたChromeの拡張機能で、その主な機能は「This extension will produce English speech to whatever text you highlight on a webpage.Highlight text and click the extension's icon」です。
Page to Speech拡張機能のCRXファイルをダウンロード
Page to Speech拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This tiny extension will produce English speech to whatever English text you highlight on a webpage.Highlight the desired text on the page or use Ctrl(Cmd)+A to select the entire page's contents and click on the extension's icon to listen to the text. You can also use the Shift+Y hotkey to produce speech. The extension will either try to produce speech from the text you highlighted on the page or from the clipboard (whatever you have currently copied in the clipboard, no matter whether it is copied from a page or from an external program)
拡張機能の基本情報
名前 | |
ID | ncillngfchljkeoiaefmncdcgkpogbhh |
公式URL | https://chromewebstore.google.com/detail/page-to-speech/ncillngfchljkeoiaefmncdcgkpogbhh |
説明 | This extension will produce English speech to whatever text you highlight on a webpage.Highlight text and click the extension's icon |
ファイルサイズ | 49.07 KB |
インストール数 | 44 |
現在のバージョン | 2.0.1 |
最終更新日 | 2015-12-18 |
公開日 | 2015-12-18 |
開発者 | https://www.dimoff.biz |
支払い方法 | free |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Page to Speech", "description": "This extension will produce English speech to whatever text you highlight on a webpage.Highlight text and click the extension's icon", "author": "Ivan Dimov", "version": "2.0.1", "background": { "scripts": [ "background.min.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "polyfill.min.js", "ext.min.js" ], "run_at": "document_end" } ], "browser_action": { "default_icon": "speech.png" }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "activeTab", "clipboardRead" ] } |