My Apps Secure Sign-in Extension

My Apps Secure Sign-in Extension

Vad är My Apps Secure Sign-in Extension?

My Apps Secure Sign-in Extension är en Chrome-tillägg utvecklad av Microsoft, och dess huvudfunktion är "My Apps Secure Sign-in Extension".

Tilläggsskärmbilder

screenshot

Ladda ner My Apps Secure Sign-in Extension-förlängningens CRX-fil

Ladda ner My Apps Secure Sign-in Extension-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        This extension is required for both App Proxy link translation and application password-based single sign-on. It may also be optionally used to launch the My Apps portal to search the applications you have access to.
With this extension you can: 

• Sign into password-based single sign-on applications- both directly from the application's login page and from the My Apps portal 
• Access internal company URLs while remote
• Launch into the My Apps portal to search across the applications you have access to

Learn more:
• App proxy link translation: https://learn.microsoft.com/en-us/entra/identity/app-proxy/application-proxy-configure-hard-coded-link-translation
• Password-based single sign-on: https://learn.microsoft.com/en-us/entra/identity/enterprise-apps/configure-password-single-sign-on-non-gallery-applications
• My Apps portal: https://learn.microsoft.com/en-us/entra/identity/enterprise-apps/myapps-overview

THIRD-PARTY SOFTWARE NOTICES AND INFORMATION
This software is based on or incorporates material from the projects listed below (collectively, "Third Party Code").
Microsoft is not the original author of the Third Party Code.
The original copyright notice and license, under which Microsoft received such Third Party Code, are set forth below.
Microsoft reserves all rights not expressly granted herein, whether by implication, estoppel or otherwise. 

JavaScript Zlib Library
Copyright (c) 2012 imaya

The MIT License

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

JavaScript autoComplete v1.0.4
Copyright (c) 2014 Simon Steinberger / Pixabay

The MIT License

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.                    

Grundläggande Information om Tillägg

Namn My Apps Secure Sign-in Extension My Apps Secure Sign-in Extension
ID ggjhpefgjjfobnfoldnjipclpcfbgbhl
Officiell webbadress https://chromewebstore.google.com/detail/my-apps-secure-sign-in-ex/ggjhpefgjjfobnfoldnjipclpcfbgbhl
Beskrivning My Apps Secure Sign-in Extension
Filstorlek 182 KB
Antal Installationer 2,246,076
Aktuell Version 8.2.1.189
Senast Uppdaterad 2024-02-28
Publiceringsdatum 2020-01-16
Betyg 2.30/5 Totalt 127 Betyg
Utvecklare Microsoft
E-post [email protected]
Betalningssätt free
Tilläggswebbplats http://azure.microsoft.com/identity
Hjälpsida URL https://aka.ms/myappsplugin
URL till Sekretesspolicy Sidan https://privacy.microsoft.com/en-us/PrivacyStatement
Stödda Språk en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "action": {
        "default_icon": "images\/badgedIcon.png",
        "default_popup": "popup\/html\/NotLoggedInPopup.html"
    },
    "author": "APSSO Team",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "all_frames": false,
            "js": [
                "js\/NewPage.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_end"
        },
        {
            "js": [
                "js\/ExtensionIdentifier.js"
            ],
            "matches": [
                "https:\/\/account.activedirectory.windowsazure.com\/*",
                "https:\/\/myapplications.microsoft.com\/*",
                "https:\/\/account.activedirectory.windowsazure.us\/*",
                "https:\/\/myapplications.microsoft.us\/*",
                "https:\/\/account.activedirectory.windowsazure.cn\/*",
                "https:\/\/myapplications.windowsazure.cn\/*",
                "https:\/\/launcher.myapps.microsoft.com\/api\/*",
                "https:\/\/launcher.myapps.microsoft.us\/api\/*",
                "https:\/\/launcher.myapps.windowsazure.cn\/api\/*"
            ],
            "run_at": "document_start"
        },
        {
            "all_frames": true,
            "js": [
                "js\/ExtensionIdentifier.js",
                "js\/UserTenantIdentifier.js",
                "js\/ListenPortalPage.js"
            ],
            "matches": [
                "https:\/\/account.activedirectory.windowsazure.com\/*",
                "https:\/\/myapplications.microsoft.com\/*",
                "https:\/\/account.activedirectory.windowsazure.us\/*",
                "https:\/\/myapplications.microsoft.us\/*",
                "https:\/\/account.activedirectory.windowsazure.cn\/*",
                "https:\/\/myapplications.windowsazure.cn\/*",
                "https:\/\/*.hosting.portal.azure.net\/*\/Listener.html?*",
                "https:\/\/*.hosting.azureportal.usgovcloudapi.net\/*\/Listener.html?*",
                "https:\/\/*.azureportal.chinacloudapi.cn\/*\/Listener.html?*",
                "https:\/\/ssotools.azurewebsites.net\/*",
                "https:\/\/launcher.myapps.microsoft.com\/api\/*",
                "https:\/\/launcher.myapps.microsoft.us\/api\/*",
                "https:\/\/launcher.myapps.windowsazure.cn\/api\/*"
            ],
            "run_at": "document_end"
        },
        {
            "js": [
                "js\/CaptureApplicationLoginControls.js"
            ],
            "matches": [
                "https:\/\/account.activedirectory.windowsazure.com\/applications\/metadatacapture\/captureapplicationmetadata.aspx?*",
                "https:\/\/account.activedirectory.windowsazure.us\/applications\/metadatacapture\/captureapplicationmetadata.aspx?*",
                "https:\/\/account.activedirectory.windowsazure.cn\/applications\/metadatacapture\/captureapplicationmetadata.aspx?*",
                "https:\/\/launcher.myapps.microsoft.com\/api\/captureMetadata?*",
                "https:\/\/launcher.myapps.microsoft.us\/api\/captureMetadata?*",
                "https:\/\/launcher.myapps.windowsazure.cn\/api\/captureMetadata?*"
            ],
            "run_at": "document_end"
        },
        {
            "js": [
                "js\/Redirection.js",
                "common\/Log.js"
            ],
            "matches": [
                "https:\/\/account.activedirectory.windowsazure.com\/applications\/redirecttoapplication.aspx?*",
                "https:\/\/launcher.myapps.microsoft.com\/api\/*",
                "https:\/\/account.activedirectory.windowsazure.us\/applications\/redirecttoapplication.aspx?*",
                "https:\/\/account.activedirectory.windowsazure.cn\/applications\/redirecttoapplication.aspx?*",
                "https:\/\/launcher.myapps.microsoft.us\/api\/*",
                "https:\/\/launcher.myapps.windowsazure.cn\/api\/*"
            ],
            "run_at": "document_end"
        },
        {
            "js": [
                "js\/SendLogs.js",
                "common\/Log.js"
            ],
            "matches": [
                "https:\/\/account.activedirectory.windowsazure.com\/applications\/default.aspx*",
                "https:\/\/account.activedirectory.windowsazure.com\/r\/*",
                "https:\/\/account.activedirectory.windowsazure.us\/applications\/default.aspx*",
                "https:\/\/account.activedirectory.windowsazure.us\/r\/*",
                "https:\/\/account.activedirectory.windowsazure.cn\/applications\/default.aspx*",
                "https:\/\/account.activedirectory.windowsazure.cn\/r\/*"
            ],
            "run_at": "document_end"
        },
        {
            "js": [
                "js\/CaptureListOfApps.js"
            ],
            "matches": [
                "https:\/\/account.activedirectory.windowsazure.com\/applications\/ssoextensionlandingpage.aspx",
                "https:\/\/account.activedirectory.windowsazure.com\/applications\/ssoextensionlandingpage.aspx?*",
                "https:\/\/account.activedirectory.windowsazure.us\/applications\/ssoextensionlandingpage.aspx",
                "https:\/\/account.activedirectory.windowsazure.us\/applications\/ssoextensionlandingpage.aspx?*",
                "https:\/\/account.activedirectory.windowsazure.cn\/applications\/ssoextensionlandingpage.aspx",
                "https:\/\/account.activedirectory.windowsazure.cn\/applications\/ssoextensionlandingpage.aspx?*",
                "https:\/\/launcher.myapps.microsoft.com\/api\/extensionLanding?*",
                "https:\/\/launcher.myapps.microsoft.com\/api\/extensionLanding",
                "https:\/\/launcher.myapps.microsoft.us\/api\/extensionLanding?*",
                "https:\/\/launcher.myapps.microsoft.us\/api\/extensionLanding",
                "https:\/\/launcher.myapps.windowsazure.cn\/api\/extensionLanding?*",
                "https:\/\/launcher.myapps.windowsazure.cn\/api\/extensionLanding"
            ],
            "run_at": "document_end"
        },
        {
            "js": [
                "js\/TamperSaml.js"
            ],
            "matches": [
                "https:\/\/account.activedirectory.windowsazure.com\/applications\/testfedaratedapplication.aspx?*",
                "https:\/\/launcher.myapps.microsoft.com\/api\/signin\/testSaml\/*",
                "https:\/\/account.activedirectory.windowsazure.us\/applications\/testfedaratedapplication.aspx?*",
                "https:\/\/account.activedirectory.windowsazure.cn\/applications\/testfedaratedapplication.aspx?*",
                "https:\/\/launcher.myapps.microsoft.us\/api\/signin\/testSaml\/*",
                "https:\/\/launcher.myapps.windowsazure.cn\/api\/signin\/testSaml\/*"
            ],
            "run_at": "document_start"
        },
        {
            "all_frames": false,
            "js": [
                "js\/ListenSamlResponse.js"
            ],
            "matches": [
                "https:\/\/login.microsoftonline.com\/*",
                "https:\/\/login.microsoftonline.us\/*",
                "https:\/\/login.partner.microsoftonline.cn\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "description": "My Apps Secure Sign-in Extension",
    "host_permissions": [
        "https:\/\/*\/*",
        "http:\/\/*\/*"
    ],
    "icons": {
        "128": "images\/icon_128px.png",
        "16": "images\/icon_16px.png",
        "32": "images\/icon_32px.png",
        "48": "images\/icon_48px.png"
    },
    "manifest_version": 3,
    "name": "My Apps Secure Sign-in Extension",
    "permissions": [
        "tabs",
        "scripting",
        "contextMenus",
        "unlimitedStorage",
        "webNavigation",
        "storage",
        "activeTab",
        "declarativeNetRequest"
    ],
    "version": "8.2.1.189",
    "web_accessible_resources": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "resources": [
                "images\/notLoggedInIcon.png"
            ]
        }
    ]
}