-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathmanifest.json
More file actions
81 lines (80 loc) · 2.45 KB
/
Copy pathmanifest.json
File metadata and controls
81 lines (80 loc) · 2.45 KB
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
{
"manifest_version": 3,
"name": "RoValra - Roblox Improved",
"version": "2.5.9",
"description": "An extension aiming to provide features that other Roblox extensions paywall!",
"content_scripts": [
{
"matches": ["*://*.roblox.com/*"],
"js": ["intercept.js"],
"run_at": "document_start",
"world": "MAIN",
"all_frames": false
},
{
"matches": ["*://*.roblox.com/*"],
"js": ["public/Assets/data/serverid_extractor.js"],
"run_at": "document_start",
"world": "MAIN"
},
{
"matches": ["*://*.roblox.com/*"],
"js": ["content.js"],
"css": ["css/sitewide.css", "css/rovalra.css"],
"run_at": "document_start",
"all_frames": false
}
],
"permissions": ["declarativeNetRequest", "storage", "scripting"],
"host_permissions": [
"https://games.roblox.com/*",
"*://*.roblox.com/*",
"https://gamejoin.roblox.com/v1/join-game-instance",
"https://users.roblox.com/*"
],
"background": {
"service_worker": "background.js"
},
"optional_permissions": ["webNavigation", "contextMenus", "webRequest"],
"declarative_net_request": {
"rule_resources": [
{
"id": "ruleset_status",
"enabled": false,
"path": "public/Assets/Rules/StatusRules.json"
},
{
"id": "ruleset_3",
"enabled": false,
"path": "public/Assets/Rules/beta-rules.json"
}
]
},
"web_accessible_resources": [
{
"resources": [
"public/Assets/*",
"public/data/*",
"Assets/data/serverid_extractor.js",
"data/*",
"intercept.js",
"assets/*",
"css/*"
],
"matches": ["https://www.roblox.com/*", "*://*.roblox.com/*"]
}
],
"action": {
"default_popup": "public/Assets/popup/popup.html",
"default_icon": {
"16": "public/Assets/icon-16.png",
"48": "public/Assets/icon-48.png",
"128": "public/Assets/icon-128.png"
}
},
"icons": {
"16": "public/Assets/icon-16.png",
"48": "public/Assets/icon-48.png",
"128": "public/Assets/icon-128.png"
}
}