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
官方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
电子邮箱 [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"
    }
}