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 |
| 官方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": [
"*:\/\/*\/*"
]
}
]
} | |