-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
72 lines (72 loc) · 1.77 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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "__MSG_APP_NAME__",
"description": "__MSG_APP_DESCRIPTION__",
"version": "3.17.0",
"manifest_version": 3,
"default_locale": "en",
"icons": { "128": "icons/icon_128.png" },
"action": {
"default_title": "__MSG_APP_NAME__",
"default_popup": "popup/popup.html"
},
"content_scripts": [
{
"matches": [
"*://tinder.com/*",
"*://*.tinder.com/*",
"*://bumble.com/app/*",
"*://*.bumble.com/app/*",
"*://lovoo.com/*",
"*://*.lovoo.com/*",
"*://okcupid.com/*",
"*://*.okcupid.com/*",
"*://badoo.com/*",
"*://*.badoo.com/*",
"*://pof.com/*",
"*://*.pof.com/*",
"*://zoosk.com/*",
"*://*.zoosk.com/*"
],
"js": ["content.js"],
"run_at": "document_start"
}
],
"background": { "service_worker": "background.js" },
"permissions": [
"storage",
"notifications",
"scripting",
"alarms",
"debugger"
],
"host_permissions": [
"https://auto-swiper.ch/*",
"https://*.auto-swiper.ch/*",
"https://payment.auto-swiper.ch/*",
"https://tinder.com/*",
"https://*.tinder.com/*",
"https://bumble.com/app/*",
"https://*.bumble.com/app/*",
"https://lovoo.com/*",
"https://*.lovoo.com/*",
"https://okcupid.com/*",
"https://*.okcupid.com/*",
"https://badoo.com/*",
"https://*.badoo.com/*",
"https://pof.com/*",
"https://*.pof.com/*",
"https://zoosk.com/*",
"https://*.zoosk.com/*"
],
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Ctrl+Shift+S",
"linux": "Ctrl+Shift+S",
"windows": "Alt+Shift+S",
"mac": "Alt+Shift+S"
}
}
}
}