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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://www.dimoff.biz, και η κύρια λειτουργία του είναι "This extension will produce English speech to whatever text you highlight on a webpage.Highlight text and click the extension's icon".
Λήψη αρχείου CRX της επέκτασης Page to Speech
Λήψη αρχείων επέκτασης 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" ] } |