Az Mask
Does it's best to find and conceal sensitive Azure information found in the portal views
Что такое Az Mask?
Az Mask - это расширение Chrome, разработанное https://clarkio.com, и его основная функция - "Does it's best to find and conceal sensitive Azure information found in the portal views".
Снимки экрана расширения
Скачать файл CRX расширения Az Mask
Скачайте файлы расширений Az Mask в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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 |
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\/*" ] } |