-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
37 lines (36 loc) · 891 Bytes
/
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
{
"manifest_version": 3,
"name": "RoAdditions",
"version": "0.1",
"description": "Adds new features to Roblox",
"icons": {
"48": "icon.png"
},
"action": {
"default_title": "RoAdditions",
"default_popup": "popup.html"
},
"permissions": ["storage"],
"host_permissions": ["*://*/*", "https://userstyles.world/*"],
"content_scripts": [
{
"matches": [
"*://www.roblox.com/*",
"*://web.roblox.com/*",
"*://roblox.com/*"
],
"js": ["loader.js"],
"run_at": "document_end"
}
],
"web_accessible_resources": [
{
"resources": ["index.js", "playbtn.js"],
"matches": ["<all_urls>"]
}
],
"options_ui": {
"page": "popup.html",
"open_in_tab": true
}
}