-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmanifest_firefox.json
56 lines (56 loc) · 1.18 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
{
"name": "FreeServer",
"action": {},
"manifest_version": 3,
"version": "0.13",
"description": "Finds free Private Servers on Roblox for free!",
"icons": {
"16": "images/icon16.png",
"48": "images/icon48.png",
"128": "images/icon128.png"
},
"content_scripts": [
{
"js": [
"js/jquery.js",
"load.js"
],
"matches": [
"https://*.roblox.com/games/*"
]
}
],
"permissions": [
"scripting",
"tabs"
],
"background": {
"scripts": ["background.js"]
},
"host_permissions": [
"https://*.roblox.com/games/*",
"https://*.roblox.com/",
"https://roblox.com/"
],
"web_accessible_resources": [
{
"resources": [
"images/*.png",
"css/*.css",
"js/*.js",
"load.js",
"background.js"
],
"matches": [
"https://*.roblox.com/games/*",
"https://*.roblox.com/",
"https://roblox.com/"
]
}
],
"browser_specific_settings": {
"gecko": {
"id": "{c97c1e22-e7c9-4ec5-8c4d-ed37883b4b18}"
}
}
}