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"
    }
}