Michromephone

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

O que é Michromephone?

Michromephone é uma extensão do Chrome desenvolvida por mgakeson, e sua principal característica é "A chrome extension that helps users send messages to their friends from the browser with voice commands".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Michromephone

Baixe arquivos de extensão Michromephone no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Michromephone Michromephone
ID ilcdkmgajobpoeemenhnncagcjemnaco
URL Oficial https://chromewebstore.google.com/detail/michromephone/ilcdkmgajobpoeemenhnncagcjemnaco
Descrição A chrome extension that helps users send messages to their friends from the browser with voice commands
Tamanho do Arquivo 1.27 MB
Contagem de Instalações 19
Versão Atual 1.2
Última Atualização 2022-09-18
Data de Publicação 2022-06-09
Desenvolvedor mgakeson
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
    }
}