-
Notifications
You must be signed in to change notification settings - Fork 14
/
manifest.json
39 lines (39 loc) · 983 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
38
39
{
"manifest_version": 3,
"name": "OnlyFans Cookie Helper",
"version": "2.3.0",
"description": "Helper extension that makes it easier to copy config.json values for the DIGITALCRIMINALS/OnlyFans scraper",
"icons": {
"48": "icons/cookie.png"
},
"background": {
"service_worker": "background/background.js"
},
"permissions": [
"cookies",
"clipboardWrite",
"storage"
],
"host_permissions": [
"*://*.onlyfans.com/"
],
"action": {
"browser_style": true,
"default_icon": {
"48": "icons/cookie.png"
},
"default_title": "OnlyFans Cookie Helper",
"default_popup": "popup/cookies.html"
},
"content_scripts": [
{
"matches": [
"*://*.onlyfans.com/*",
"*://*.onlyfans.com/"
],
"js": [
"content_scripts/bcToken.js"
]
}
]
}