-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
52 lines (52 loc) · 1.15 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"manifest_version": 3,
"name": "SteamAuth",
"description": "SteamAuth is a browser extension that allows you sharing your Inventory or Trading Data with other websites securely.",
"version": "1.0.1",
"action": {
"default_popup": "index.html"
},
"content_scripts": [
{
"js": [
"assets/index.jsx-loader-BQn31GRX.js"
],
"matches": [
"https://*/*",
"http://*/*"
]
}
],
"web_accessible_resources": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"resources": [
"public/notification.mp3",
"assets/browser-polyfill-D19t-2ey.js",
"assets/index.jsx-Bw4wM5Ef.js"
],
"use_dynamic_url": false
}
],
"background": {
"service_worker": "service-worker-loader.js",
"type": "module"
},
"permissions": [
"cookies",
"storage"
],
"host_permissions": [
"*://steamcommunity.com/*",
"*://www.steamwebapi.com/*"
],
"icons": {
"16": "src/assets/logo.png",
"32": "src/assets/steamauth_logo32.png",
"48": "src/assets/steamauth_logo64.png",
"128": "src/assets/steamauth_logo128.png"
}
}