-
Notifications
You must be signed in to change notification settings - Fork 13
/
manifest.json
80 lines (80 loc) · 2.88 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"manifest_version": 2,
"name": "BC - Cursed",
"description": "Injects the scripts needed to wear the curse",
"version": "1.2.9.4",
"background": {
"scripts": [
"Extension/Ext_Backgound.js"
]
},
"browser_action": {
"default_title": "BCCurse",
"default_popup": "Extension/Ext_Popup.html"
},
"content_scripts": [
{
"run_at": "document_end",
"matches": [
"https://www.bondageprojects.com/college/*",
"https://www.bondageprojects.elementfx.com/*",
"https://bondageprojects.elementfx.com/*",
"http://bondageprojects.com/college/*",
"http://www.bondageprojects.com/college/*",
"http://www.bondageprojects.elementfx.com/*",
"https://bondage-europe.com/*",
"https://www.bondage-europe.com/*",
"http://localhost/BondageClub/*"
],
"all_frames": true,
"js": [
"Curse/MainCurse.js",
"Curse/Checks/SelfMessageCheck.js",
"Curse/Checks/MessageCheck.js",
"Curse/Checks/PunishmentCheck.js",
"Curse/Checks/AppearanceCheck.js",
"Curse/Dictionary/Translate.js",
"Curse/Dictionary/TranslateHelpers.js",
"Curse/Dictionary/GER.js",
"Curse/Dictionary/RU.js",
"Curse/Dictionary/EN.js",
"Curse/Dictionary/FR.js",
"Curse/Functions/All.js",
"Curse/Functions/ClubOwner.js",
"Curse/Functions/Private.js",
"Curse/Functions/Owner.js",
"Curse/Functions/Mistress.js",
"Curse/Functions/Public.js",
"Curse/Functions/Wearer.js",
"Curse/Utilities/Activators.js",
"Curse/Utilities/Helpers.js",
"Curse/Utilities/AlteredFunctions.js",
"Curse/Utilities/ChatHandlers.js",
"Curse/Utilities/Startup.js",
"Curse/Constants/HelpMsg.js",
"Curse/Constants/Tips.js",
"Curse/Constants/Punishments.js",
"Curse/Constants/CursedConfig.js",
"Curse/Room/CursePreference.js",
"Curse/Room/CurseRoom.js",
"Curse/Room/WardrobeV2.js",
"Utils.js",
"Extension/Ext_Content.js"
]
}
],
"web_accessible_resources": [
"*"
],
"permissions": [
"declarativeContent",
"activeTab",
"storage",
"tabs",
"<all_urls>",
"file://*/*",
"http://*/*",
"https://*/*"
],
"content_security_policy": "script-src 'self' https://gist.github.com/ace-1331/731ae0bb5508e2a1cc9aee5671b79ab7.js; object-src 'self'"
}