Angular Inspector
Detect Angular apps and javascript libraries
Angular Inspector란 무엇입니까?
Angular Inspector은(는) Digital Fluency Inc에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Detect Angular apps and javascript libraries"입니다.
확장 프로그램 스크린샷
Angular Inspector 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Use this tool to detect what is running under the hood on the webpages you visit. Most importantly, detect Angular version numbers! Now contains the ability to OPT-IN to contribute Angular sites you find to a central repository.
확장 프로그램 기본 정보
이름 | Angular Inspector |
ID | odkdoekijebogaiopbjgkgogkgifjfnk |
공식 URL | https://chromewebstore.google.com/detail/angular-inspector/odkdoekijebogaiopbjgkgogkgifjfnk |
설명 | Detect Angular apps and javascript libraries |
파일 크기 | 270 KB |
설치 횟수 | 2,928 |
현재 버전 | 0.9.1 |
최근 업데이트 | 2023-12-06 |
출시 날짜 | 2020-05-04 |
평점 | 4.38/5 총 8 개의 평점 |
개발자 | Digital Fluency Inc |
이메일 | [email protected] |
결제 유형 | free |
개인정보 보호 정책 페이지 URL | https://github.com/StephenFluin/angular-inspector/blob/master/privacy.md |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Angular Inspector", "version": "0.9.1", "description": "Detect Angular apps and javascript libraries", "icons": { "128": "icon128.png", "48": "icon48.png" }, "background": { "service_worker": "dist\/service_worker.js", "type": "module" }, "content_scripts": [ { "js": [ "dist\/main.js" ], "matches": [ "*:\/\/*\/*" ] } ], "action": { "default_icon": { "32": "icon.png" }, "default_popup": "popup.html", "default_title": "Angular Inspector" }, "options_page": "options.html", "permissions": [ "webRequest", "storage", "activeTab" ], "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "https:\/\/inspector-b2058.firebaseio.com\/sites\/example.com\/angular" ], "web_accessible_resources": [ { "resources": [ "dist\/detector.js" ], "matches": [ "*:\/\/*\/*" ] } ] } |