Michromephone

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

Hvad er Michromephone?

Michromephone er en Chrome-udvidelse udviklet af mgakeson, og dens hovedfunktion er "A chrome extension that helps users send messages to their friends from the browser with voice commands".

Udvidelsesskærmbilleder

screenshot

Download Michromephone-udvidelses-CRX-fil

Download Michromephone-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Michromephone Michromephone
ID ilcdkmgajobpoeemenhnncagcjemnaco
Officiel URL https://chromewebstore.google.com/detail/michromephone/ilcdkmgajobpoeemenhnncagcjemnaco
Beskrivelse A chrome extension that helps users send messages to their friends from the browser with voice commands
Filstørrelse 1.27 MB
Antal Installationer 19
Nuværende Version 1.2
Senest Opdateret 2022-09-18
Udgivelsesdato 2022-06-09
Udvikler mgakeson
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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"
    }
}