CRXcavator Admin
CRXcavator Admin helps administrators import their whitelisted extensions from G Suite into CRXcavator. Why a Chrome Extension?…
CRXcavator Admin란 무엇입니까?
CRXcavator Admin은(는) https://crxcavator.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "CRXcavator Admin helps administrators import their whitelisted extensions from G Suite into CRXcavator. Why a Chrome Extension?…"입니다.
확장 프로그램 스크린샷
CRXcavator Admin 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
CRXcavator Admin helps administrators import their whitelisted extensions from G Suite into CRXcavator. Why a Chrome Extension? Unfortunately, Google does not publish any APIs related to Chrome Extensions in G Suite. In order to efficiently get a list of an organizations whitelisted Chrome Extensions, a Chrome Extension that scrapes the data off of the G Suite console itself was the easiest way to go.
확장 프로그램 기본 정보
이름 | CRXcavator Admin |
ID | hhpnfblokaflccplojnbofglabpkkfak |
공식 URL | https://chromewebstore.google.com/detail/crxcavator-admin/hhpnfblokaflccplojnbofglabpkkfak |
설명 | CRXcavator Admin helps administrators import their whitelisted extensions from G Suite into CRXcavator. Why a Chrome Extension?… |
파일 크기 | 3.94 MB |
설치 횟수 | 129 |
현재 버전 | 0.0.5 |
최근 업데이트 | 2019-04-15 |
출시 날짜 | 2019-04-15 |
평점 | 3.50/5 총 2 개의 평점 |
개발자 | https://crxcavator.io |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://crxcavator.io |
도움말 페이지 URL | https://crxcavator.io/docs#/crxcavator_admin |
개인정보 보호 정책 페이지 URL | https://duo.com/legal/privacy-notice-services |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "version": "0.0.5", "short_name": "CRXcavator Admin", "name": "CRXcavator Admin", "browser_action": { "default_popup": "index.html", "default_title": "CRXcavator Admin" }, "content_scripts": [ { "matches": [ "https:\/\/admin.google.com\/*" ], "js": [ "content_scripts\/whitelisted_extensions.js" ], "run_at": "document_start" } ], "content_security_policy": "connect-src https:\/\/api.crxcavator.io https:\/\/cognito-identity.us-east-2.amazonaws.com https:\/\/cognito-idp.us-east-2.amazonaws.com; script-src 'self'; object-src 'self';", "permissions": [ "activeTab" ], "icons": { "16": "images\/16x16.png", "48": "images\/48x48.png", "128": "images\/128x128.png" } } |