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에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Does it's best to find and conceal sensitive Azure information found in the portal views"입니다.
확장 프로그램 스크린샷
Az Mask 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 |
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\/*" ] } |