Web Scan - Web technology lookup
Discover the libraries and web technologies in any websites
Web Scan - Web technology lookup란 무엇입니까?
Web Scan - Web technology lookup은(는) Karthik S Kumar에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Discover the libraries and web technologies in any websites"입니다.
확장 프로그램 스크린샷
Web Scan - Web technology lookup 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Free tool to discover the technologies on which any website runs. The tool shows the library names along with icons and version number if available in the address bar. Now in dark mode! This easy to use library requires no configuration. Just add it to your chrome and voila you are ready to go. Lightweight and efficient. This extension will give you a one-click access to find-out the technologies used on the current page that you are visiting. The algorithm can detect 80+ javascript libraries. Visit the support link and file an issue if you think anything is missing. This is an open source project. Fork the project on Github! Note: The tool is completely free It does not access or track your data Coming soon: Detection of the fonts used in webpages Detection of server on which the webpage runs
확장 프로그램 기본 정보
이름 | Web Scan - Web technology lookup |
ID | hfcopfpmehaahmglocoolmgidihnjdgn |
공식 URL | https://chromewebstore.google.com/detail/web-scan-web-technology-l/hfcopfpmehaahmglocoolmgidihnjdgn |
설명 | Discover the libraries and web technologies in any websites |
파일 크기 | 236 KB |
설치 횟수 | 1,041 |
현재 버전 | 0.0.1 |
최근 업데이트 | 2020-04-20 |
출시 날짜 | 2020-04-18 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | Karthik S Kumar |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/00karthik/web-scan |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Web Scan - Web technology lookup", "short_name": "WebScan - Library detection tool", "version": "0.0.1", "web_accessible_resources": [ "detect.js" ], "description": "Discover the libraries and web technologies in any websites", "icons": { "48": "icons\/icon.png", "128": "icons\/icon.png" }, "browser_action": { "default_popup": "popup.html", "default_title": "WebScan", "default_icon": "icons\/icon.png" }, "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "background": { "persistent": false, "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content-script.js" ], "run_at": "document_idle" } ] } |