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.
拡張機能の基本情報
名前 | 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 |
Eメール | [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": [ "*:\/\/*\/*" ] } ] } |