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”。

擴展截圖

screenshot

下載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 Michromephone
ID ilcdkmgajobpoeemenhnncagcjemnaco
官方網址 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
電子郵箱 [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"
    }
}