-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
32 lines (32 loc) · 1.16 KB
/
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
{
"name": "Humble Bundle Steam Tool",
"version": "0.4",
"description": "A extensions that displays the steam links and current prices of all links in a humble bundle!",
"permissions": [ "https://www.humblebundle.com/games/*", "declarativeContent", "storage", "https://store.steampowered.com/api/", "http://api.steampowered.com/ISteamApps/GetAppList/v0002/" ],
"content_scripts": [
{
"matches": [ "https://www.humblebundle.com/games/*"],
"css": ["popup.css"],
"js": [ "jquery-3.3.1.min.js","content.js" ],
"run_at": "document_end"
}
],
"web_accessible_resources": ["images/ajax-loader.gif", "popup,css"],
"content_security_policy": "script-src 'self' ; object-src 'self'",
"browser_action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images/extensionIcon16.png",
"32": "images/extensionIcon32.png",
"48": "images/extensionIcon48.png",
"128": "images/extensionIcon128.png"
}
},
"icons": {
"16": "images/extensionIcon16.png",
"32": "images/extensionIcon32.png",
"48": "images/extensionIcon48.png",
"128": "images/extensionIcon128.png"
},
"manifest_version": 2
}