mSecure

Companion browser extension for mSecure that provides auto-login features in your web browser.

Was ist mSecure?

mSecure ist eine Chrome-Erweiterung, die von https://www.msecure.com entwickelt wurde, und ihr Hauptmerkmal ist "Companion browser extension for mSecure that provides auto-login features in your web browser.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

mSecure-Erweiterungs-CRX-Datei herunterladen

Laden Sie mSecure-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Your secure browser companion for mSecure, providing automated help for account management online!


The mSecure Browser Extension extends mSecure's functionality into your web browser.* Instead of simply storing online account credentials, you can now access them without having to leave your web browser. All features run locally on your computer, through a secured connection, so your information is never transferred to the mSecure Extension through an online source. The source of your information is the mSecure app itself.

* For the initial release of mSecure 6, mSecure's Browser Extension will only be available for Mac. Windows support is coming soon.


AUTO-FILL FOR ACCOUNT SIGN IN
Signing in to an existing online account is incredibly simple, as mSecure can now provide the Browser Extension with the proper credentials automatically. Instead of switching to the mSecure app to copy and paste your username and password, those items are now injected into forms automatically.

AUTO-CAPTURE FOR ACCOUNT SIGN IN
When signing in to an online account that has not yet been saved to your mSecure app, the Browser Extension will take the username and password you entered and send it to mSecure so a Login can be created automatically. This simplifies online account systems as your Login data is saved as you browse the web.

ACCOUNT CREATION AND ACCOUNT UPDATES
The mSecure Extension goes beyond just help with signing in to your existing accounts. When signing up for a new account, choose from a list of the most popular usernames in your existing Login records. When choosing your username, mSecure also provides a randomly generated password for making sure your new account is safe and secure. 

The process is similar for account updates. mSecure provides a randomly generated password so you don't have to worry if the password is strong enough. Simply accept the password mSecure generates, or tailor it to meet your needs in the password generator settings, and after the data is injected into the Sign Up or Update form, the new credentials are automatically saved in mSecure for easy access at a later time.


Experience the security and simplicity only mSecure can provide. Simply download the mSecure app, create your account, and then download the Browser Extension here in the store. Your online account management will never be the same!                    

Grundlegende Informationen zur Erweiterung

Name mSecure mSecure
ID hihnblnamcfdfdjamdhhcgnpmkhmecjm
Offizielle URL https://chromewebstore.google.com/detail/msecure/hihnblnamcfdfdjamdhhcgnpmkhmecjm
Beschreibung Companion browser extension for mSecure that provides auto-login features in your web browser.
Dateigröße 193 KB
Installationsanzahl 3,104
Aktuelle Version 1.0.0
Letztes Update 2022-03-17
Veröffentlichungsdatum 2022-03-16
Bewertung 2.44/5 Insgesamt 9 Bewertungen
Entwickler https://www.msecure.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://www.msecure.com
Hilfeseite URL https://support.msecure.com
URL der Datenschutzrichtlinien-Seite https://www.msecure.com/privacy-statement
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "mSecure",
    "version": "1.0.0",
    "description": "Companion browser extension for mSecure that provides auto-login features in your web browser.",
    "icons": {
        "48": "icons\/icon48.png",
        "96": "icons\/icon96.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "scripts\/jquery3.6.0.js",
                "scripts\/init.js",
                "scripts\/MSGlobal.js",
                "scripts\/MSUtilities.js",
                "scripts\/MSMessenger.js",
                "content\/MSBroker.js",
                "content\/MSFormProcessor.js",
                "content\/MSAutoLoginController.js",
                "content\/MSAutoLoginMain.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*.google.com\/*"
            ],
            "js": [
                "content\/MSSpecialCase.js"
            ]
        }
    ],
    "action": {
        "default_icon": {
            "16": "icons\/icon16.png",
            "32": "icons\/icon32.png",
            "48": "icons\/icon48.png",
            "64": "icons\/icon64.png",
            "96": "icons\/icon96.png",
            "128": "icons\/icon128.png"
        },
        "default_title": "mSecure 6"
    },
    "permissions": [
        "nativeMessaging",
        "tabs",
        "activeTab",
        "webNavigation",
        "scripting"
    ],
    "host_permissions": [
        ""
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "mac": "Command+Shift+E",
                "windows": "Ctrl+Shift+E",
                "chromeos": "Ctrl+Shift+E",
                "linux": "Ctrl+Shift+E"
            }
        }
    }
}