Michromephone
A chrome extension that helps users send messages to their friends from the browser with voice commands
Michromephoneとは何ですか?
Michromephoneはmgakesonによって開発されたChromeの拡張機能で、その主な機能は「A chrome extension that helps users send messages to their friends from the browser with voice commands」です。
拡張機能のスクリーンショット
Michromephone拡張機能のCRXファイルをダウンロード
Michromephone拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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
拡張機能の基本情報
名前 | Michromephone |
ID | ilcdkmgajobpoeemenhnncagcjemnaco |
公式URL | https://chromewebstore.google.com/detail/michromephone/ilcdkmgajobpoeemenhnncagcjemnaco |
説明 | A chrome extension that helps users send messages to their friends from the browser with voice commands |
ファイルサイズ | 1.27 MB |
インストール数 | 19 |
現在のバージョン | 1.2 |
最終更新日 | 2022-09-18 |
公開日 | 2022-06-09 |
開発者 | mgakeson |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | 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" } } |