Library Detector

Detects the Javascript libraries running on a page and displays their icons in the address bar.

Co to jest Library Detector?

Library Detector to rozszerzenie Chrome opracowane przez library-detector-for-chrome, a jego główną funkcją jest „Detects the Javascript libraries running on a page and displays their icons in the address bar.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Library Detector

Pobierz pliki rozszerzeń Library Detector w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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!                    

Podstawowe informacje o rozszerzeniu

Nazwa Library Detector Library Detector
ID cgaocdmhkmfnkdkbnckgmpopcbpaaejo
Oficjalny URL https://chromewebstore.google.com/detail/library-detector/cgaocdmhkmfnkdkbnckgmpopcbpaaejo
Opis Detects the Javascript libraries running on a page and displays their icons in the address bar.
Rozmiar pliku 232 KB
Liczba instalacji 13,803
Aktualna Wersja 6.2.0
Ostatnia Aktualizacja 2020-08-02
Data Publikacji 2019-12-19
Ocena 4.04/5 Łącznie 47 Oceny
Deweloper library-detector-for-chrome
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/johnmichel/Library-Detector-for-Chrome
Adres URL Strony Pomocy https://github.com/johnmichel/Library-Detector-for-Chrome/issues
Obsługiwane Języki 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"
        }
    ]
}