Web Scan - Web technology lookup

Discover the libraries and web technologies in any websites

Web Scan - Web technology lookupคืออะไร?

Web Scan - Web technology lookup เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Karthik S Kumar และคุณลักษณะหลักของมันคือ "Discover the libraries and web technologies in any websites"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Web Scan - Web technology lookup

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

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

                        Free tool to discover the technologies on which any website runs. The tool shows the library names along with icons and version number if available in the address bar. Now in dark mode!

This easy to use library requires no configuration. Just add it to your chrome and voila you are ready to go. Lightweight and efficient.

This extension will give you a one-click access to find-out the technologies used on the current page that you are visiting. The algorithm can detect 80+ javascript libraries.

 Visit the support link and file an issue if you think anything is missing. This is an open source project. Fork the project on Github! 

Note:
The tool is completely free
It does not access or track your data

Coming soon:
Detection of the fonts used in webpages
Detection of server on which the webpage runs                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Web Scan - Web technology lookup Web Scan - Web technology lookup
ID hfcopfpmehaahmglocoolmgidihnjdgn
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/web-scan-web-technology-l/hfcopfpmehaahmglocoolmgidihnjdgn
คำอธิบาย Discover the libraries and web technologies in any websites
ขนาดไฟล์ 236 KB
จำนวนการติดตั้ง 1,041
เวอร์ชันปัจจุบัน 0.0.1
อัปเดตครั้งล่าสุด 2020-04-20
วันที่เผยแพร่ 2020-04-18
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Karthik S Kumar
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/00karthik/web-scan
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Web Scan - Web technology lookup",
    "short_name": "WebScan - Library detection tool",
    "version": "0.0.1",
    "web_accessible_resources": [
        "detect.js"
    ],
    "description": "Discover the libraries and web technologies in any websites",
    "icons": {
        "48": "icons\/icon.png",
        "128": "icons\/icon.png"
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "WebScan",
        "default_icon": "icons\/icon.png"
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_idle"
        }
    ]
}