mSecure

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

Co je mSecure?

mSecure je rozšíření Chrome vyvinuté https://www.msecure.com, a jeho hlavní funkcí je „Companion browser extension for mSecure that provides auto-login features in your web browser.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření mSecure

Stáhněte si soubory rozšíření mSecure ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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!                    

Základní Informace o Rozšíření

Název mSecure mSecure
ID hihnblnamcfdfdjamdhhcgnpmkhmecjm
Oficiální URL https://chromewebstore.google.com/detail/msecure/hihnblnamcfdfdjamdhhcgnpmkhmecjm
Popis Companion browser extension for mSecure that provides auto-login features in your web browser.
Velikost souboru 193 KB
Počet instalací 3,104
Aktuální Verze 1.0.0
Poslední Aktualizace 2022-03-17
Datum Vydání 2022-03-16
Hodnocení 2.44/5 Celkem 9 Hodnocení
Vývojář https://www.msecure.com
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://www.msecure.com
URL Stránky Nápovědy https://support.msecure.com
URL Stránky Zásad Ochrany Soukromí https://www.msecure.com/privacy-statement
Podporované Jazyky 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"
            }
        }
    }
}