-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.json
33 lines (33 loc) · 1.08 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
{
"manifest_version": 2,
"name": "Datebot - Online Dating Assistant DEBUG",
"version": "3.1.1",
"permissions": [
"tabs",
"background",
"contextMenus",
"storage",
"clipboardWrite"
],
"icons": {
"16":"img/Thomas-Hello16.png",
"48":"img/Thomas-Hello48.png",
"128":"img/Thomas-Hello128.png"
},
"content_security_policy": "script-src 'self' 'unsafe-eval' https://www.google.com; object-src 'self'",
"description": "Reading dozens of profiles is exhausting. Datebot helps you find matches faster.",
"background": {
"scripts":["js/background.js"]
},
"options_page": "components/options/interests.html",
"browser_action": {
"name": "Let's read some profiles",
"icons": {"16":"img/Thomas-Hello16.png","48":"img/Thomas-Hello48.png","128":"img/Thomas-Hello128.png"},
"default_icon": "img/Thomas-Hello128.png",
"default_popup": "popup.html"
},
"content_scripts": [ {
"js": [ "bower_components/jquery/dist/jquery.min.js", "js/content_script.js" ],
"matches": [ "http://www.okcupid.com/*", "https://www.okcupid.com/*"]
}]
}