-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
31 lines (26 loc) · 993 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
{
"manifest_version": 2,
"name": "Search Verbatim (sic)",
"description": "Forces Google to use Verbatim searching and adds the plus ('+') sign to all search terms in DuckDuckGo. Those are the only two I use regularly enough to know the operators for; I am happy to add more search engines - email me with details of the search engine and how to enable verbatim mode.",
"version": "1.0",
"background": {
"scripts":["background.js"]
},
"icons": {
"16": "icons/sic-16.png",
"19": "icons/sic-19.png",
"48": "icons/sic-48.png",
"128": "icons/sic-128.png"
},
"permissions": [
"webRequest", "tabs", "webRequestBlocking",
"http://*/search?*", "https://*/search?*", "*://www.duckduckgo.com/?q=*", "*://duckduckgo.com/?q=*"
],
"browser_action": {
"default_icon": "icons/sic-19.png",
"default_title": "Toggle verbatim search (sic)"
},
"author": "Daniel Fisher",
"homepage_url": "https://github.com/stormsaber/sic-extension",
"short_name": "[sic]"
}