Angular Inspector

Detect Angular apps and javascript libraries

Angular Inspector là gì?

Angular Inspector là một tiện ích mở rộng Chrome được phát triển bởi Digital Fluency Inc, và tính năng chính của nó là "Detect Angular apps and javascript libraries".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Angular Inspector

Tải xuống các tệp mở rộng Angular Inspector dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Angular Inspector Angular Inspector
ID odkdoekijebogaiopbjgkgogkgifjfnk
URL Chính Thức https://chromewebstore.google.com/detail/angular-inspector/odkdoekijebogaiopbjgkgogkgifjfnk
Mô tả Detect Angular apps and javascript libraries
Kích Thước Tệp 270 KB
Số Lần Cài Đặt 2,928
Phiên Bản Hiện Tại 0.9.1
Cập Nhật Lần Cuối 2023-12-06
Ngày Phát Hành 2020-05-04
Đánh Giá 4.38/5 Tổng số 8 Đánh Giá
Nhà Phát Triển Digital Fluency Inc
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://github.com/StephenFluin/angular-inspector/blob/master/privacy.md
Ngôn Ngữ Được Hỗ Trợ 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}