-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest_firefox.json
46 lines (46 loc) · 1.1 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
{
"manifest_version":2,
"name":"Steam Collection Size Viewer",
"short_name":"SCSV",
"author":"[email protected]",
"description":"Allows you to see Steam workshop collection size with just a click of a button.",
"version":"1.0.4",
"icons":{
"16":"icon_16.png",
"48":"icon_48.png",
"128":"icon.png"
},
"permissions":[
"activeTab",
"https://api.steampowered.com/*",
"storage"
],
"content_scripts":[
{
"matches":[
"https://steamcommunity.com/sharedfiles/filedetails/*"
],
"js":[
"/assets/content.js"
],
"css":[
"/assets/custom.css"
]
}
],
"browser_action":{
"default_popup":"assets/popup.html",
"default_icon":{
"16":"icon_16.png",
"48":"icon_48.png",
"128":"icon.png"
},
"default_title":"Steam Collection Size Viewer"
},
"browser_specific_settings":{
"gecko":{
"id":"[email protected]",
"strict_min_version":"91.0"
}
}
}