Library Detector

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

Library Detectorคืออะไร?

Library Detector เป็นส่วนขยายของ Chrome ที่พัฒนาโดย library-detector-for-chrome และคุณลักษณะหลักของมันคือ "Detects the Javascript libraries running on a page and displays their icons in the address bar."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Library Detector

ดาวน์โหลดไฟล์ส่วนขยาย Library Detector ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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 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"
        }
    ]
}