Library Sniffer
Sniff web framework and javascript libraries run on browsing website.
Library Sniffer란 무엇입니까?
Library Sniffer은(는) https://justjavac.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Sniff web framework and javascript libraries run on browsing website."입니다.
확장 프로그램 스크린샷
Library Sniffer 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
LibrarySniffer is a web technology detection tool that detects which JavaScript libraries or frameworks are being used on the web page currently being viewed. With LibrarySniffer you can detect web pages, frameworks, third-party services, server technologies and more.
확장 프로그램 기본 정보
이름 | Library Sniffer |
ID | fhhdlnnepfjhlhilgmeepgkhjmhhhjkh |
공식 URL | https://chromewebstore.google.com/detail/library-sniffer/fhhdlnnepfjhlhilgmeepgkhjmhhhjkh |
설명 | Sniff web framework and javascript libraries run on browsing website. |
파일 크기 | 533 KB |
설치 횟수 | 33,292 |
현재 버전 | 2.9.1 |
최근 업데이트 | 2020-07-24 |
출시 날짜 | 2018-09-07 |
평점 | 4.30/5 총 98 개의 평점 |
개발자 | https://justjavac.com |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/justjavac/ChromeSnifferPlus |
도움말 페이지 URL | https://github.com/justjavac/ChromeSnifferPlus |
지원되는 언어 | en,fr,pt-BR,zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_extName__", "icons": { "48": "icon48.png", "128": "icon128.png" }, "short_name": "__MSG_extShortName__", "manifest_version": 2, "version": "2.9.1", "description": "__MSG_extDesc__", "default_locale": "en", "background": { "page": "background.html" }, "options_page": "option.html", "page_action": { "default_icon": "icon.png", "default_title": "__MSG_pageActionTitle__", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/main.js" ] } ], "permissions": [ "tabs", "webRequest", "http:\/\/*\/*", "https:\/\/*\/*" ], "web_accessible_resources": [ "js\/detector.js" ] } |