Az Mask

Does it's best to find and conceal sensitive Azure information found in the portal views

Az Mask क्या है?

Az Mask https://clarkio.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Does it's best to find and conceal sensitive Azure information found in the portal views"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Az Mask एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        This is a Chrome extension that will mask GUIDs (such as Subscription IDs) and email addresses with a blur. The intention of the extension is to make it easier to do screen recordings without revealing sensitive, personal, account information that may show up on screen. It will only run and apply against Azure related URLs.                    

एक्सटेंशन की मूल जानकारी

नाम Az Mask Az Mask
ID amobeamdmdnloajcaiomgegpakjdiacm
आधिकारिक URL https://chromewebstore.google.com/detail/az-mask/amobeamdmdnloajcaiomgegpakjdiacm
विवरण Does it's best to find and conceal sensitive Azure information found in the portal views
फ़ाइल का आकार 53.75 KB
स्थापना संख्या 2,721
वर्तमान संस्करण 1.1.10
अंतिम अपडेट 2021-08-08
प्रकाशन तिथि 2021-05-18
रेटिंग 4.61/5 कुल 18 रेटिंग्स
डेवलपर https://clarkio.com
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://www.clarkio.com
सहायता पृष्ठ URL https://github.com/clarkio/azure-mask
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Az Mask",
    "version": "1.1.10",
    "description": "Does it's best to find and conceal sensitive Azure information found in the portal views",
    "icons": {
        "16": "\/icons\/icon16.png",
        "48": "\/icons\/icon48.png",
        "128": "\/icons\/icon128.png"
    },
    "browser_action": {
        "default_icon": "\/icons\/icon16.png",
        "default_popup": "\/popout\/popout.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.portal.azure.com\/*",
                "*:\/\/portal.azure.com\/*",
                "*:\/\/functions.azure.com\/*",
                "*:\/\/portal.azure.us\/*",
                "*:\/\/*.qnamaker.ai\/*",
                "*:\/\/adf.azure.com\/*",
                "*:\/\/ms-adf.azure.com\/*",
                "*:\/\/portal.azure.cn\/*"
            ],
            "js": [
                "\/content-script\/mask-process.js"
            ],
            "run_at": "document_idle",
            "all_frames": true,
            "match_about_blank": true
        }
    ],
    "permissions": [
        "activeTab",
        "storage",
        "*:\/\/*.portal.azure.com\/*",
        "*:\/\/portal.azure.com\/*",
        "*:\/\/portal.azure.us\/*",
        "*:\/\/portal.azure.cn\/*",
        "*:\/\/functions.azure.com\/*",
        "*:\/\/*.qnamaker.ai\/*",
        "*:\/\/adf.azure.com\/*",
        "*:\/\/ms-adf.azure.com\/*"
    ]
}