-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
47 lines (47 loc) · 1016 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
45
46
47
{
"manifest_version": 2,
"name": "My Personal Assistant",
"version": "0.0.1",
"description": "Have an assistant that will be with you anywhere online!",
"author": "Taufik Nur Rahmanda",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"permissions": [
"activeTab",
"tabs",
"storage",
"unlimitedStorage"
],
"browser_action": {
"default_title": "Select Your Assistant",
"default_icon": {
"16": "icon16.png",
"24": "icon24.png",
"32": "icon32.png"
},
"default_popup": "popup.html"
},
"background": {
"scripts": [
"vendor/jquery-2.1.3.min.js",
"js/background.js",
"js/helper.js"
]
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"js/content.js",
"js/helper.js"
]
}
],
"content_security_policy": "script-src 'self' https://pagecdn.io https://www.taufiknur.com; object-src 'self'"
}