-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
58 lines (58 loc) · 1.29 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
{
"manifest_version": 2,
"name": "Thanks, Clippy",
"version": "0.1",
"permissions": ["tabs", "<all_urls>"],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"assets/js/jquery.min.js",
"assets/js/clippy.js"
],
"run_at": "document_start",
"css": ["assets/css/style.css"],
"pages": ["assets/clippy.html", "assets/incognito.html"]
},
{
"matches": [
"<all_urls>"
],
"exclude_matches": [
"https://www.youtube.com/",
"https://www.facebook.com/"
],
"js": ["scripts/follow.js"]
},
{
"matches": [
"https://web.whatsapp.com/"
],
"js": ["scripts/whatsapp.js"]
},
{
"matches": [
"https://www.reddit.com/"
],
"js": ["scripts/reddit.js"]
},
{
"matches": [
"https://www.youtube.com/"
],
"js": ["scripts/youtube.js"]
},
{
"matches": [
"https://www.facebook.com/"
],
"js": ["scripts/facebook.js"]
}
],
"background": {
"scripts": ["assets/js/background.js"]
},
"web_accessible_resources": ["assets/*", "scripts/*"]
}