Angular Inspector
Detect Angular apps and javascript libraries
什麼是Angular Inspector?
Angular Inspector是由Digital Fluency Inc開發的Chrome擴展程式,該擴展的主要功能是“Detect Angular apps and javascript libraries”。
擴展截圖
下載Angular Inspector擴展crx文件
下載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. 擴展基本資訊
| 名稱 | |
| ID | odkdoekijebogaiopbjgkgogkgifjfnk |
| 官方網址 | 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": [
"*:\/\/*\/*"
]
}
]
} | |