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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Detects the Javascript libraries running on a page and displays their icons in the address bar."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Library Detector एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" } ] } |