-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
37 lines (37 loc) · 931 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
{
"manifest_version": 2,
"name": "WhatsApp join to full group",
"description": "When the group is full, Trying to join again every 15 minutes",
"version": "1.2",
"browser_action": {
"default_popup": "popup.html",
"default_icon": "assets/icons/icon.png"
},
"permissions": [
"alarms",
"tabs",
"activeTab",
"storage",
"activeTab",
"notifications",
"https://chat.whatsapp.com/*",
"https://web.whatsapp.com/*"
],
"background": {
"scripts": [
"assets/js/background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"https://chat.whatsapp.com/*"
],
"js": [
"assets/js/contact-script.js"
],
"all_frames": true
}
]
}