Web Scan - Web technology lookup

Discover the libraries and web technologies in any websites

Web Scan - Web technology lookup क्या है?

Web Scan - Web technology lookup Karthik S Kumar द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Discover the libraries and web technologies in any websites"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Web Scan - Web technology lookup एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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