-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
45 lines (45 loc) · 1.23 KB
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "AngularJS Birbal",
"version": "0.0.15",
"description": "Angular app analysis - performance and structure dependency through Birbal eye. Allow to mock Http calls for ongoing development.",
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"match_about_blank": false,
"js": [
"src/message.js",
"src/content-script/inject/angularinspector.min.js",
"src/content-script/content-script.js"
],
"run_at": "document_start"
}
],
"permissions": [
"storage",
"alarms"
],
"icons": {
"16": "img/angular-icon.png",
"48": "img/angular-icon.png",
"128": "img/angular-icon.png"
},
"background": {
"scripts": [
"src/message.js",
"src/background/background.js"
],
"persistent": false
},
"page_action": {
"default_title": "Not an Angular page",
"default_icon": "img/angular-icon.png"
},
"web_accessible_resources": [
"lib/angular-mocks.js"
],
"devtools_page": "src/devtools/devToolsPage.html",
"content_security_policy": "default-src 'self' chrome-extension-resource: ; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-eval'; connect-src *; frame-src *;",
"manifest_version": 2
}