Michromephone

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

Vad är Michromephone?

Michromephone är en Chrome-tillägg utvecklad av mgakeson, och dess huvudfunktion är "A chrome extension that helps users send messages to their friends from the browser with voice commands".

Tilläggsskärmbilder

screenshot

Ladda ner Michromephone-förlängningens CRX-fil

Ladda ner Michromephone-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Michromephone Michromephone
ID ilcdkmgajobpoeemenhnncagcjemnaco
Officiell webbadress https://chromewebstore.google.com/detail/michromephone/ilcdkmgajobpoeemenhnncagcjemnaco
Beskrivning A chrome extension that helps users send messages to their friends from the browser with voice commands
Filstorlek 1.27 MB
Antal Installationer 19
Aktuell Version 1.2
Senast Uppdaterad 2022-09-18
Publiceringsdatum 2022-06-09
Utvecklare mgakeson
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    }
}