-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathmanifest.json
138 lines (138 loc) · 4.63 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"manifest_version": 2,
"name": "__MSG_manifestName__",
"short_name": "Luminous",
"description": "__MSG_manifestDescription__",
"version": "0.0.28",
"author": "Guilherme Baptista",
"developer": {
"name": "Guilherme Baptista",
"url": "http://gbaptista.com"
},
"default_locale": "en_US",
"homepage_url": "https://gbaptista.github.io/luminous/doc/en-US/",
"applications": {
"gecko": {
"id": "[email protected]"
}
},
"icons": {
"16": "images/icons/16.png",
"20": "images/icons/20.png",
"24": "images/icons/24.png",
"32": "images/icons/32.png",
"48": "images/icons/48.png",
"64": "images/icons/64.png",
"128": "images/icons/128.png",
"256": "images/icons/256.png",
"512": "images/icons/512.png"
},
"browser_action": {
"default_icon": {
"16": "images/icons/16.png",
"32": "images/icons/32.png",
"64": "images/icons/64.png"
},
"default_popup": "html/popup/popup.html"
},
"options_page": "html/settings/injection/enabled.html",
"sidebar_action": {
"default_icon": {
"16": "images/icons/16.png",
"20": "images/icons/20.png",
"24": "images/icons/24.png",
"32": "images/icons/32.png",
"48": "images/icons/48.png",
"64": "images/icons/64.png",
"128": "images/icons/128.png",
"256": "images/icons/256.png",
"512": "images/icons/512.png"
},
"default_title": "Luminous",
"default_panel": "html/logs/logs.html?container=sidebar"
},
"devtools_page": "html/devtools/devtools.html",
"options_ui": {
"page": "html/settings/injection/enabled.html",
"open_in_tab": true,
"browser_style": false
},
"content_scripts": [
{
"run_at": "document_start",
"matches": ["<all_urls>"],
"all_frames": true,
"js": [
"vendor/ua-parser-js-0.7.20/ua-parser.min.js",
"js/content/strategy.js",
"js/helpers/code_names.js",
"js/helpers/compressor.js",
"js/helpers/domain_settings.js",
"vendor/js-cookie-2.2.1/js.cookie.min.js",
"js/utils/injections/data.js",
"js/utils/injections/options.js",
"js/utils/injections/interceptor.js",
"js/utils/numbers.js",
"js/content/injections_controller.js",
"js/content/injections/data.js",
"js/content/injections/options.js",
"js/content/injections/interceptor.js",
"js/content/readers/data.js",
"js/content/initializer.js"
]
}
],
"background": {
"scripts": [
"js/background/strategy.js",
"js/helpers/code_names.js",
"js/helpers/compressor.js",
"js/helpers/domain_settings.js",
"js/background/setup/default_settings.js",
"js/utils/injections/element_to_html_string.js",
"js/utils/injections/data.js",
"js/utils/injections/options.js",
"js/utils/injections/interceptor.js",
"js/background/injections/settings.js",
"js/background/injections/headers/security_polices.js",
"js/background/injections/headers/user_agent.js",
"js/background/injections/headers/cookies.js",
"js/background/injections/content/filter_response_data.js",
"js/background/tabs/set_current_tab.js",
"js/background/tabs/reset_data_for_tab.js",
"js/utils/numbers.js",
"js/utils/colors.js",
"js/background/counters.js",
"js/background/ui/icon.js",
"js/background/ui/badge.js",
"js/background/devtools.js",
"js/background/auto_settings/domains.js",
"js/background/auto_settings/events.js",
"vendor/dexiejs-2.0.4/dexie.min.js",
"js/helpers/indexed_db.js",
"js/background/reports.js"
]
},
"permissions": [
"storage", "unlimitedStorage", "tabs",
"webRequest", "webRequestBlocking", "webNavigation",
"<all_urls>"
],
"web_accessible_resources": [
"js/content/interceptor.js",
"js/content/interceptors/event_target/remove_event_listener.js",
"js/content/interceptors/event_target/add_event_listener.js",
"js/content/interceptors/fetch/fetch.js",
"js/content/interceptors/gamepad/get_gamepads.js",
"js/content/interceptors/geolocation/get_current_position.js",
"js/content/interceptors/geolocation/watch_position.js",
"js/content/interceptors/battery_status/get_battery.js",
"js/content/interceptors/navigator_id/user_agent.js",
"js/content/interceptors/schedulers/set_interval.js",
"js/content/interceptors/schedulers/set_timeout.js",
"js/content/interceptors/web_socket/send.js",
"js/content/interceptors/xml_http_request/open.js",
"js/content/interceptors/xml_http_request/send.js",
"js/content/interceptors/window/request_animation_frame.js"
]
}