-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshift-config.js
More file actions
64 lines (62 loc) · 1.66 KB
/
shift-config.js
File metadata and controls
64 lines (62 loc) · 1.66 KB
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
57
58
59
60
61
62
63
64
const SHIFT_CONFIG = {
platforms: [
{ id: "steam", label: "Steam" },
{ id: "psn", label: "PlayStation" },
{ id: "xbox", label: "Xbox Live" },
{ id: "nintendo", label: "Nintendo" },
{ id: "epic", label: "Epic Games" },
{ id: "stadia", label: "Stadia" }
],
games: [
{
id: "borderlands4",
label: "Borderlands 4",
defaultUrls: [
"https://www.polygon.com/borderlands-4-active-shift-codes-redeem/",
"https://mentalmars.com/game-news/borderlands-4-shift-codes/"
]
},
{
id: "tinytina",
label: "Tiny Tina's Wonderlands",
defaultUrls: [
"https://mentalmars.com/game-news/tiny-tinas-wonderlands-shift-codes/",
"https://www.rockpapershotgun.com/tiny-tinas-wonderlands-shift-codes"
]
},
{
id: "borderlands3",
label: "Borderlands 3",
defaultUrls: [
"https://mentalmars.com/game-news/borderlands-3-golden-keys/"
]
},
{
id: "borderlandspresequel",
label: "Borderlands: The Pre-Sequel",
defaultUrls: [
"https://mentalmars.com/game-news/bltps-golden-keys/"
]
},
{
id: "borderlands2",
label: "Borderlands 2",
defaultUrls: [
"https://mentalmars.com/game-news/borderlands-2-golden-keys/"
]
},
{
id: "borderlandsgameoftheyear",
label: "Borderlands: Game of the Year Edition",
defaultUrls: [
"https://mentalmars.com/game-news/borderlands-golden-keys/"
]
}
]
};
if (typeof module !== "undefined" && module.exports) {
module.exports = SHIFT_CONFIG;
}
if (typeof globalThis !== "undefined") {
globalThis.SHIFT_CONFIG = SHIFT_CONFIG;
}