Angular Inspector

Detect Angular apps and javascript libraries

Angular Inspectorคืออะไร?

Angular Inspector เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Digital Fluency Inc และคุณลักษณะหลักของมันคือ "Detect Angular apps and javascript libraries"

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

screenshot

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

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

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

                        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.                    

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

ชื่อ Angular Inspector Angular Inspector
ID odkdoekijebogaiopbjgkgogkgifjfnk
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/angular-inspector/odkdoekijebogaiopbjgkgogkgifjfnk
คำอธิบาย Detect Angular apps and javascript libraries
ขนาดไฟล์ 270 KB
จำนวนการติดตั้ง 2,928
เวอร์ชันปัจจุบัน 0.9.1
อัปเดตครั้งล่าสุด 2023-12-06
วันที่เผยแพร่ 2020-05-04
คะแนน 4.38/5 รวมทั้งหมด 8 คะแนน
ผู้พัฒนา Digital Fluency Inc
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://github.com/StephenFluin/angular-inspector/blob/master/privacy.md
ภาษาที่รองรับ 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}