Skip to content

Commit 954c546

Browse files
committed
release: bump Angular DevTools version to 1.6.3
1 parent 5988bde commit 954c546

File tree

2 files changed

+17
-55
lines changed

2 files changed

+17
-55
lines changed

devtools/projects/shell-browser/src/manifest/manifest.chrome.json

Lines changed: 9 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"short_name": "Angular DevTools",
44
"name": "Angular DevTools",
55
"description": "Angular DevTools extends Chrome DevTools adding Angular specific debugging and profiling capabilities.",
6-
"version": "1.6.2",
6+
"version": "1.6.3",
77
"minimum_chrome_version": "102",
88
"content_security_policy": {
99
"extension_pages": "script-src 'self'; object-src 'self'"
@@ -25,45 +25,26 @@
2525
"devtools_page": "devtools.html",
2626
"web_accessible_resources": [
2727
{
28-
"resources": [
29-
"app/backend_bundle.js",
30-
"app/detect_angular_for_extension_icon_bundle.js"
31-
],
32-
"matches": [
33-
"<all_urls>"
34-
],
28+
"resources": ["app/backend_bundle.js", "app/detect_angular_for_extension_icon_bundle.js"],
29+
"matches": ["<all_urls>"],
3530
"extension_ids": []
3631
}
3732
],
3833
"background": {
3934
"service_worker": "app/background_bundle.js"
4035
},
41-
"permissions": [
42-
"scripting",
43-
"activeTab",
44-
"storage"
45-
],
46-
"host_permissions": [
47-
"<all_urls>"
48-
],
36+
"permissions": ["scripting", "activeTab", "storage"],
37+
"host_permissions": ["<all_urls>"],
4938
"content_scripts": [
5039
{
51-
"matches": [
52-
"<all_urls>"
53-
],
54-
"js": [
55-
"app/ng_validate_bundle.js"
56-
],
40+
"matches": ["<all_urls>"],
41+
"js": ["app/ng_validate_bundle.js"],
5742
"run_at": "document_idle",
5843
"all_frames": true
5944
},
6045
{
61-
"matches": [
62-
"<all_urls>"
63-
],
64-
"js": [
65-
"app/content_script_bundle.js"
66-
],
46+
"matches": ["<all_urls>"],
47+
"js": ["app/content_script_bundle.js"],
6748
"run_at": "document_idle",
6849
"all_frames": true
6950
}

devtools/projects/shell-browser/src/manifest/manifest.firefox.json

Lines changed: 8 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"short_name": "Angular DevTools",
44
"name": "Angular DevTools",
55
"description": "Angular DevTools extends Firefox DevTools adding Angular specific debugging and profiling capabilities.",
6-
"version": "1.6.2",
6+
"version": "1.6.3",
77
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
88
"icons": {
99
"16": "assets/icon16.png",
@@ -14,40 +14,21 @@
1414
"default_popup": "popups/not-angular.html"
1515
},
1616
"devtools_page": "devtools.html",
17-
"web_accessible_resources": [
18-
"app/backend_bundle.js",
19-
"devtools.html"
20-
],
17+
"web_accessible_resources": ["app/backend_bundle.js", "devtools.html"],
2118
"background": {
22-
"scripts": [
23-
"app/background_bundle.js"
24-
]
19+
"scripts": ["app/background_bundle.js"]
2520
},
26-
"permissions": [
27-
"activeTab",
28-
"storage",
29-
"http://*/*",
30-
"https://*/*",
31-
"file:///*"
32-
],
21+
"permissions": ["activeTab", "storage", "http://*/*", "https://*/*", "file:///*"],
3322
"content_scripts": [
3423
{
35-
"matches": [
36-
"<all_urls>"
37-
],
38-
"js": [
39-
"app/ng_validate_bundle.js"
40-
],
24+
"matches": ["<all_urls>"],
25+
"js": ["app/ng_validate_bundle.js"],
4126
"run_at": "document_idle",
4227
"all_frames": true
4328
},
4429
{
45-
"matches": [
46-
"<all_urls>"
47-
],
48-
"js": [
49-
"app/content_script_bundle.js"
50-
],
30+
"matches": ["<all_urls>"],
31+
"js": ["app/content_script_bundle.js"],
5132
"run_at": "document_idle",
5233
"all_frames": true
5334
}

0 commit comments

Comments
 (0)