-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
37 lines (37 loc) · 896 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
{
"name": "Steam TRY",
"version": "2.3",
"manifest_version": 3,
"icons": {
"128": "icon-128x128.png"
},
"description": "Steam mağaza fiyatlarını ve pazar eşya fiyatlarını TL olarak görüntülemenizi sağlar. https://github.com/ArdaGnsrn/steam-try-chrome",
"author": "ardagunsuren@gmail.com",
"permissions": [
"scripting",
"webNavigation",
"storage"
],
"content_scripts": [
{
"matches": [
"https://steampowered.com/*",
"https://store.steampowered.com/*",
"https://steamcommunity.com/*"
],
"js": [
"content-script.js"
],
"run_at": "document_end"
}
],
"host_permissions": [
"https://steampowered.com/*",
"https://store.steampowered.com/*",
"https://steamcommunity.com/*"
],
"action": {
"default_popup": "/popup/index.html",
"default_title": "Steam TRY"
}
}