forked from ahkohd/Inline-Search
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
36 lines (36 loc) · 849 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
{
"name": "Inline Search",
"version": "0.0.6",
"manifest_version": 2,
"description": "Use your favourite search engines on the fly without having to open new tab.",
"homepage_url": "http://github.com/ahkohd",
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*"],
"css": ["inline.css"],
"js": ["interact.min.js", "inline.js"]
}
],
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"web_accessible_resources": ["redirect.html"],
"browser_action":
{
"default_icon": "icons/icon48.png",
"default_popup": "./src/popup.html"
},
"default_locale": "en",
"options_ui": {
"page": "src/options_custom/index.html",
"open_in_tab": false
},
"permissions": [
"contentSettings",
"tabs",
"storage",
"*://*/*"
]
}