Library Detector
Detects the Javascript libraries running on a page and displays their icons in the address bar.
Library Detector란 무엇입니까?
Library Detector은(는) library-detector-for-chrome에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Detects the Javascript libraries running on a page and displays their icons in the address bar."입니다.
확장 프로그램 스크린샷
Library Detector 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
The Library Detector extension discovers which Javascript libraries are being utilized on webpages you visit and displays their icons, along with a link to the library's homepage, in the address bar. Figure out which cool libraries are powering today's websites. You'll be surprised to learn about some of the more esoteric libraries that are out there. You'll also be horrified by the awful cocktail of libraries that some popular sites utilize! Supports over 80 Javascript libraries, and growing with every version. Visit the support link and file a request if you think anything is missing. Or, better yet, fork the project on Github!
확장 프로그램 기본 정보
이름 | Library Detector |
ID | cgaocdmhkmfnkdkbnckgmpopcbpaaejo |
공식 URL | https://chromewebstore.google.com/detail/library-detector/cgaocdmhkmfnkdkbnckgmpopcbpaaejo |
설명 | Detects the Javascript libraries running on a page and displays their icons in the address bar. |
파일 크기 | 232 KB |
설치 횟수 | 13,803 |
현재 버전 | 6.2.0 |
최근 업데이트 | 2020-08-02 |
출시 날짜 | 2019-12-19 |
평점 | 4.04/5 총 47 개의 평점 |
개발자 | library-detector-for-chrome |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/johnmichel/Library-Detector-for-Chrome |
도움말 페이지 URL | https://github.com/johnmichel/Library-Detector-for-Chrome/issues |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Library Detector", "short_name": "Library Detector", "version": "6.2.0", "web_accessible_resources": [ "library\/libraries.js", "content_scripts\/lib_detect.js" ], "description": "Detects the Javascript libraries running on a page and displays their icons in the address bar.", "icons": { "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "scripts": [ "library\/libraries.js", "background_scripts\/main.js" ], "persistent": false }, "page_action": { "default_icon": { "19": "icons\/icon19.png", "38": "icons\/icon38.png" }, "default_title": "Library Detector" }, "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content_scripts\/inject.js" ], "run_at": "document_end" }, { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content_scripts\/detect.js" ], "run_at": "document_idle" } ] } |