Angular Inspector

Detect Angular apps and javascript libraries

What is Angular Inspector?

Angular Inspector is a Chrome extension developed by Digital Fluency Inc, and its main feature is "Detect Angular apps and javascript libraries".

Extension Screenshots

screenshot

Download Angular Inspector Extension CRX File

Download Angular Inspector extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Use this tool to detect what is running under the hood on the webpages you visit.

Most importantly, detect Angular version numbers!

Now contains the ability to OPT-IN to contribute Angular sites you find to a central repository.                    

Extension Basic Information

Name Angular Inspector Angular Inspector
ID odkdoekijebogaiopbjgkgogkgifjfnk
Official URL https://chromewebstore.google.com/detail/angular-inspector/odkdoekijebogaiopbjgkgogkgifjfnk
Description Detect Angular apps and javascript libraries
File Size 270 KB
Installation Count 2,928
Current Version 0.9.1
Last Updated 2023-12-06
Publish Date 2020-05-04
Rating 4.38/5 Total 8 Ratings
Developer Digital Fluency Inc
Email [email protected]
Payment Type free
Privacy Policy Page URL https://github.com/StephenFluin/angular-inspector/blob/master/privacy.md
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Angular Inspector",
    "version": "0.9.1",
    "description": "Detect Angular apps and javascript libraries",
    "icons": {
        "128": "icon128.png",
        "48": "icon48.png"
    },
    "background": {
        "service_worker": "dist\/service_worker.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "js": [
                "dist\/main.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "action": {
        "default_icon": {
            "32": "icon.png"
        },
        "default_popup": "popup.html",
        "default_title": "Angular Inspector"
    },
    "options_page": "options.html",
    "permissions": [
        "webRequest",
        "storage",
        "activeTab"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "https:\/\/inspector-b2058.firebaseio.com\/sites\/example.com\/angular"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "dist\/detector.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ]
}