mSecure

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

Co to jest mSecure?

mSecure to rozszerzenie Chrome opracowane przez https://www.msecure.com, a jego główną funkcją jest „Companion browser extension for mSecure that provides auto-login features in your web browser.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia mSecure

Pobierz pliki rozszerzeń mSecure w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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!                    

Podstawowe informacje o rozszerzeniu

Nazwa mSecure mSecure
ID hihnblnamcfdfdjamdhhcgnpmkhmecjm
Oficjalny URL https://chromewebstore.google.com/detail/msecure/hihnblnamcfdfdjamdhhcgnpmkhmecjm
Opis Companion browser extension for mSecure that provides auto-login features in your web browser.
Rozmiar pliku 193 KB
Liczba instalacji 3,104
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2022-03-17
Data Publikacji 2022-03-16
Ocena 2.44/5 Łącznie 9 Oceny
Deweloper https://www.msecure.com
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://www.msecure.com
Adres URL Strony Pomocy https://support.msecure.com
Adres URL Strony Polityki Prywatności https://www.msecure.com/privacy-statement
Obsługiwane Języki 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"
            }
        }
    }
}