-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
55 lines (53 loc) · 1.19 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
{
"name": "SearchCopy",
"short_name": "SearchCopy",
"description": "SearchCopy lets you copy searches to https://www.searchcopy.ch/ ",
"version": "0.81",
"minimum_chrome_version": "9",
"manifest_version": 2,
"author": "Roman Bischoff",
"icons": {
"16": "images/icon.png",
"32": "images/icon32.png",
"64": "images/icon64.png",
"128":"images/icon128.png"
},
"page_action": {
"default_title": "share your search engine searches",
"default_icon": {
"19": "images/icon19.png",
"38": "images/icon38.png"
}
},
"background": {
"scripts": [
"background.js"
]
},
"omnibox": { "keyword" : "omnix" },
"content_scripts": [
{
"matches": [
"https://www.google.ch/*",
"https://www.google.com/*"
],
"js": ["content.js"]
}
],
"options_page": "options.html",
"permissions": [
"https://www.google.ch/*",
"https://www.google.com/*",
"<all_urls>",
"background",
"tabs",
"activeTab",
"webNavigation",
"storage",
"debugger"
],
"web_accessible_resources": [
"inject_script.js",
"images/*.png"
]
}