Michromephone
A chrome extension that helps users send messages to their friends from the browser with voice commands
Co je Michromephone?
Michromephone je rozšíření Chrome vyvinuté mgakeson, a jeho hlavní funkcí je „A chrome extension that helps users send messages to their friends from the browser with voice commands“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Michromephone
Stáhněte si soubory rozšíření Michromephone ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
Michromephone is a little personal project that allows users to send discord messages and emails to friends from the chrome browser by using simple voice commands. We've also added additional voice commands to allow a user to: - copy text from a webpage - read text out loud from a webpage - send a link of the current tab - stores spoken commands into a users clipboard (that location where data is stoed when you copy and paste text) which can be sent as messages
Základní Informace o Rozšíření
Název | Michromephone |
ID | ilcdkmgajobpoeemenhnncagcjemnaco |
Oficiální URL | https://chromewebstore.google.com/detail/michromephone/ilcdkmgajobpoeemenhnncagcjemnaco |
Popis | A chrome extension that helps users send messages to their friends from the browser with voice commands |
Velikost souboru | 1.27 MB |
Počet instalací | 19 |
Aktuální Verze | 1.2 |
Poslední Aktualizace | 2022-09-18 |
Datum Vydání | 2022-06-09 |
Vývojář | mgakeson |
[email protected] | |
Typ Platby | free |
Podporované Jazyky | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Michromephone", "description": "A chrome extension that helps users send messages to their friends from the browser with voice commands", "version": "1.2", "manifest_version": 3, "action": { "default_popup": "index.html", "default_title": "Open the popup" }, "icons": { "16": "michromephone16.png", "48": "michromephone16.png", "128": "michromephone16.png" }, "permissions": [ "activeTab", "clipboardWrite", "storage" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "voiceRecognition.js", "pageReader.js" ] } ], "background": { "service_worker": "background.js", "type": "module" } } |