-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
44 lines (44 loc) · 1.01 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
{
"manifest_version": 2,
"name": "Swifty",
"description": "I am confident, swift and pretty!",
"version": "1.0",
"permissions": [
// "*://*/*",
"*://localhost/",
"tabs", // for facebook login
"background",
"http://*.facebook.com/*"
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": [
"js/jquery.min.js",
"js/share.js",
"js/front.js",
"js/fb.js"
],
"css": [
"css/front.css"
]
}
],
"browser_action": {
"default_icon": "images/icon48.png",
"default_title": "Swifty",
"default_popup": "html/popup.html"
},
"background": {
"page" : "html/background.html"
},
"web_accessible_resources": [
"images/resize-full.png",
"images/resize-small.png",
"images/sharefb.png"
],
"icons": { "16": "images/icon16.png",
"48": "images/icon48.png",
"128": "images/icon128.png" }
}