-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
44 lines (43 loc) · 945 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
40
41
42
43
44
{
"name": "Email Destroyer",
"version": "1.0.0",
"manifest_version": 2,
"icons": {
"16": "assets/icons/icon-16.png",
"38": "assets/icons/icon-32.png",
"128": "assets/icons/icon-128.png"
},
/* "default_locale": "en",*/
"background": {
"scripts": [
"assets/js/angular.min.js",
"assets/js/script.js",
"assets/js/storage.service.js"
],
"css": ["assets/style/style.css"],
"persistent": false
},
"permissions": [
"https://cdnjs.cloudflare.com/*",
"https://fonts.googleapis.com/*",
"tabs",
"activeTab"
],
"content_scripts": [
{
"matches": [
"https://mail.google.com/*"
],
"js": [
"assets/js/jquery-3.1.1.min.js",
"assets/js/content.js"
],
"run_at": "document_end",
"all_frames": true
}
],
"browser_action": {
"default_icon": "assets/icons/icon-20.png",
"default_popup": "index.html"
}
}