aboutsummaryrefslogtreecommitdiff
path: root/src/shared/default-settings.js
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2017-11-23 21:22:42 +0900
committerShin'ya Ueoka <ueokande@i-beam.org>2017-11-26 11:45:05 +0900
commit7b44b652473b487e2d00a5b705a7f78ee66dec65 (patch)
tree6957bd276294d1c5be395b1e95e045d2e03a9a29 /src/shared/default-settings.js
parent4e5ddc1d57ba4f42314eb49ae57a9b67950be596 (diff)
Add search form
Diffstat (limited to 'src/shared/default-settings.js')
-rw-r--r--src/shared/default-settings.js16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/shared/default-settings.js b/src/shared/default-settings.js
index c1402b7..6d2013b 100644
--- a/src/shared/default-settings.js
+++ b/src/shared/default-settings.js
@@ -117,14 +117,14 @@ export default {
},
'search': {
'default': 'google',
- 'engines': {
- 'google': 'https://google.com/search?q={}',
- 'yahoo': 'https://search.yahoo.com/search?p={}',
- 'bing': 'https://www.bing.com/search?q={}',
- 'duckduckgo': 'https://duckduckgo.com/?q={}',
- 'twitter': 'https://twitter.com/search?q={}',
- 'wikipedia': 'https://en.wikipedia.org/w/index.php?search={}'
- }
+ 'engines': [
+ ['google', 'https,//google.com/search?q={}'],
+ ['yahoo', 'https,//search.yahoo.com/search?p={}'],
+ ['bing', 'https,//www.bing.com/search?q={}'],
+ ['duckduckgo', 'https,//duckduckgo.com/?q={}'],
+ ['twitter', 'https,//twitter.com/search?q={}'],
+ ['wikipedia', 'https,//en.wikipedia.org/w/index.php?search={}'],
+ ]
}
}
};