mSecure

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

Qu'est-ce que mSecure ?

mSecure est une extension Chrome développée par https://www.msecure.com, et sa fonction principale est "Companion browser extension for mSecure that provides auto-login features in your web browser.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension mSecure

Téléchargez les fichiers d'extension mSecure au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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!                    

Informations de Base sur l'Extension

Nom mSecure mSecure
ID hihnblnamcfdfdjamdhhcgnpmkhmecjm
URL Officiel https://chromewebstore.google.com/detail/msecure/hihnblnamcfdfdjamdhhcgnpmkhmecjm
Description Companion browser extension for mSecure that provides auto-login features in your web browser.
Taille du Fichier 193 KB
Nombre d'Installations 3,104
Version Actuelle 1.0.0
Dernière Mise à Jour 2022-03-17
Date de Publication 2022-03-16
Évaluation 2.44/5 Total 9 Évaluations
Développeur https://www.msecure.com
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://www.msecure.com
URL de la Page d'Aide https://support.msecure.com
URL de la Page de Politique de Confidentialité https://www.msecure.com/privacy-statement
Langues Prises en Charge 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"
            }
        }
    }
}