-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathmanifest.firefox.json
126 lines (108 loc) · 2.47 KB
/
manifest.firefox.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
{
"manifest_version": 2,
"name": "BTRoblox - Making Roblox Better",
"short_name": "BTRoblox",
"description": "Enhance your Roblox experience!",
"version": "3.6.16",
"author": "AntiBoomz",
"browser_action": {
"default_title": "Open BTRoblox Settings"
},
"icons": {
"128": "res/icon_128.png"
},
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "102.0"
}
},
"background": {
"scripts": [
"js/rbx/Constants.js",
"js/shared/common.js",
"js/shared/utility.js",
"js/shared/messaging.js",
"js/shared/sharedData.js",
"js/shared/settings.js",
"js/shared/contextmenu.js",
"js/shared/serverdetails.js",
"js/bg/background.js",
"js/bg/groupshout.js",
"js/bg/blogfeed.js",
"js/rbx/RobloxApi.js"
]
},
"permissions": [
"*://*.roblox.com/",
"*://*.rbxcdn.com/",
"notifications",
"contextMenus",
"scripting",
"storage",
"alarms"
],
"web_accessible_resources": [
"/res/*",
"/css/*"
],
"content_scripts": [
{
"matches": [
"*://www.roblox.com/*",
"*://web.roblox.com/*",
"*://create.roblox.com/*"
],
"exclude_matches": [
"*://*/userads/*",
"*://*/user-sponsorship/*",
"*://*/build/upload",
"*://*/*/userads/*",
"*://*/*/user-sponsorship/*",
"*://*/*/build/upload"
],
"js": [
"js/rbx/Constants.js",
"js/shared/common.js",
"js/shared/utility.js",
"js/shared/messaging.js",
"js/shared/sharedData.js",
"js/shared/settings.js",
"js/shared/contextmenu.js",
"js/shared/serverdetails.js",
"js/util/injectJS.js",
"js/util/injectCSS.js",
"js/util/reactHook.js",
"js/util/angularHook.js",
"js/util/loadOptionalLibrary.js",
"js/feat/themes.js",
"js/feat/adblock.js",
"js/feat/fastSearch.js",
"js/feat/navigation.js",
"js/feat/robuxToCash.js",
"js/feat/settingsModal.js",
"js/rbx/AssetCache.js",
"js/rbx/RobloxApi.js",
"js/pages/common.js",
"js/pages/avatar.js",
"js/pages/catalog.js",
"js/pages/friends.js",
"js/pages/gamedetails.js",
"js/pages/groups.js",
"js/pages/groupadmin.js",
"js/pages/home.js",
"js/pages/inventory.js",
"js/pages/itemdetails.js",
"js/pages/messages.js",
"js/pages/money.js",
"js/pages/profile.js",
"js/pages/create.js",
"js/pages/marketplace.js",
"js/inject.js",
"js/main.js"
],
"run_at": "document_start",
"all_frames": true
}
]
}