Michromephone

A chrome extension that helps users send messages to their friends from the browser with voice commands

Michromephone là gì?

Michromephone là một tiện ích mở rộng Chrome được phát triển bởi mgakeson, và tính năng chính của nó là "A chrome extension that helps users send messages to their friends from the browser with voice commands".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Michromephone

Tải xuống các tệp mở rộng Michromephone dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Michromephone Michromephone
ID ilcdkmgajobpoeemenhnncagcjemnaco
URL Chính Thức https://chromewebstore.google.com/detail/michromephone/ilcdkmgajobpoeemenhnncagcjemnaco
Mô tả A chrome extension that helps users send messages to their friends from the browser with voice commands
Kích Thước Tệp 1.27 MB
Số Lần Cài Đặt 19
Phiên Bản Hiện Tại 1.2
Cập Nhật Lần Cuối 2022-09-18
Ngày Phát Hành 2022-06-09
Nhà Phát Triển mgakeson
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}