Say Play
Play, pause, forward and rewind any video with your voice.
Τι είναι το Say Play;
Το Say Play είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://thanesh.dev, και η κύρια λειτουργία του είναι "Play, pause, forward and rewind any video with your voice.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Say Play
Λήψη αρχείων επέκτασης Say Play σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Features: 1. Set custom voice commands for each playback control. 2. Rewind & play option. 3. Set rewind & forward jump size. 4. Review last said command. How To Use: 1. Install the Say Play chrome extension. 2. Reload the website (e.g., youtube.com). 3. Click the Say Play icon. 4. Note the voice command configuration and modify if necessary. 5. Click "Turn On". 6. At the browser prompt, click "Allow" to enable the microphone. 7. Speak to the microphone the configured voice commands. 8. When you're done, click the Say Play icon and click "Turn Off". Usage Tips: 1. Use a headset with a microphone for better voice recognition. Privacy Policy: 1. There is no tracking, no telemetry, and no analytics implemented. 2. Storage permission is requested to locally store user settings. 3. Tabs permission is requested to control video playback on a given page. 4. Chrome's cloud speech recognition engine is used for voice recognition. Privacy Practices: 1. Website Content - When activated on a given page and microphone access is granted, Say Play listens for voice activity that matches the configured voice commands by using Google Chrome's cloud speech recognition engine. When a match is found, Say Play triggers the corresponding playback control.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Say Play |
ID | chhonclphdnimjnadmlhhfkedkgmcice |
Επίσημο URL | https://chromewebstore.google.com/detail/say-play/chhonclphdnimjnadmlhhfkedkgmcice |
Περιγραφή | Play, pause, forward and rewind any video with your voice. |
Μέγεθος Αρχείου | 150 KB |
Αριθμός Εγκαταστάσεων | 354 |
Τρέχουσα Έκδοση | 2.0.2 |
Τελευταία Ενημέρωση | 2021-02-09 |
Ημερομηνία Δημοσίευσης | 2020-06-03 |
Αξιολόγηση | 4.00/5 Συνολικά 4 Αξιολογήσεις |
Προγραμματιστής | https://thanesh.dev |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://thanesh.dev/say-play |
Διεύθυνση URL της Σελίδας Βοήθειας | https://thanesh.dev/say-play |
URL της Σελίδας Πολιτικής Απορρήτου | https://thanesh.dev/privacy-policy |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Say Play", "version": "2.0.2", "icons": { "16": "assets\/logo\/16x16_on.png", "38": "assets\/logo\/38x38_on.png", "48": "assets\/logo\/48x48_on.png", "128": "assets\/logo\/128x128_on.png" }, "description": "Play, pause, forward and rewind any video with your voice.", "homepage_url": "https:\/\/thanesh.dev\/say-play", "short_name": "Say Play", "permissions": [ "tabs", "storage" ], "content_security_policy": "style-src 'self'; script-src 'self'; object-src 'self'", "author": "Thanesh Rajandran", "minimum_chrome_version": "49", "browser_action": { "default_popup": "popup.html", "default_icon": { "16": "assets\/logo\/16x16_off.png", "38": "assets\/logo\/38x38_off.png", "48": "assets\/logo\/48x48_off.png", "128": "assets\/logo\/128x128_off.png" }, "default_title": "Say Play", "chrome_style": false }, "background": { "scripts": [ "js\/background.bundle.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/contentScript.bundle.js" ], "css": [ "assets\/lib\/notyf.min.css" ] } ] } |