mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
37 lines
1.1 KiB
JSON
37 lines
1.1 KiB
JSON
{
|
|
"manifest_version": 2,
|
|
"short_name": "Angular DevTools",
|
|
"name": "Angular DevTools",
|
|
"description": "Angular DevTools extends Chrome DevTools adding Angular specific debugging and profiling capabilities.",
|
|
"version": "1.0.3",
|
|
"version_name": "1.0.3",
|
|
"minimum_chrome_version": "50",
|
|
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
|
|
"icons": {
|
|
"16": "assets/icon16.png",
|
|
"48": "assets/icon48.png",
|
|
"128": "assets/icon128.png"
|
|
},
|
|
"browser_action": {
|
|
"default_popup": "popups/not-angular.html"
|
|
},
|
|
"devtools_page": "devtools.html",
|
|
"web_accessible_resources": ["backend.js", "runtime.js", "devtools.html"],
|
|
"background": {
|
|
"scripts": ["background.js", "runtime.js"],
|
|
"persistent": false
|
|
},
|
|
"permissions": ["activeTab", "http://*/*", "https://*/*", "file:///*"],
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["<all_urls>"],
|
|
"js": ["runtime.js"],
|
|
"run_at": "document_start"
|
|
},
|
|
{
|
|
"matches": ["<all_urls>"],
|
|
"js": ["ng-validate.js"],
|
|
"run_at": "document_idle"
|
|
}
|
|
]
|
|
}
|