Michromephone

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

Что такое Michromephone?

Michromephone - это расширение Chrome, разработанное mgakeson, и его основная функция - "A chrome extension that helps users send messages to their friends from the browser with voice commands".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Michromephone

Скачайте файлы расширений 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"
    }
}