└── README.md
/README.md:
--------------------------------------------------------------------------------
1 | ## Google Chrome Custom Search Engines
2 | #### By Greg Sadetsky ([original list by Dan Turkel](https://github.com/daturkel/custom-search-engines))
3 |
4 | Google Chrome's Custom Search Engine feature allows you to add search shortcuts that can be used directly from the search bar (the "Omnibox") for sites other than your main search engine. These shortcuts work on (almost) any site that offers a search functionality -- be it Wikipedia, Amazon, Google Images, etc.
5 |
6 | Example: you can set up a new search engine for Wikipedia that's mapped to the shortcut "w". To search Wikipedia from the Omnibox, you would then only need to type:
7 |
8 | - ⌘ L to focus on the Omnibox (or ctrl L if you're on Windows)
9 | - `w Pokemon` (shortcut + space + search term)
10 | - Enter
11 |
12 | ##### Direct access
13 |
14 | You can also map shortcuts to access frequently visited sites, such as Google Calendar ("c") or Gmail ("m"). There is no "search" involved in these shortcuts, but they work nevertheless!
15 |
16 | ##### Stopping sites from adding their own custom search engines
17 |
18 | There is no way (as of now) to configure Google Chrome to stop sites from adding their own search engines (Chrome actually adds some sites on their behalf, without the site "asking" to be added).
19 |
20 | If you prefer to maintain a clean list of custom search engines, you can use a Chrome extension to which I've contributed for that!
21 |
22 | - ["Don't add custom search engines" in the Chrome Web Store](https://chrome.google.com/webstore/detail/dont-add-custom-search-en/dnodlcololidkjgbpeoleabmkocdhacc?hl=en)
23 | - [Source code on GitHub](https://github.com/gregsadetsky/chrome-dont-add-custom-search-engines)
24 |
25 | ### The Search Engines
26 |
27 | Name | Keyword | Example | Url
28 | :--- | :------ | :------ | :--
29 | Amazon | amzn | | `https://www.amazon.com/s/?field-keywords=%s`
30 | AWS | aw | `aw s3` | `https://console.aws.amazon.com/%s`
31 | Dictionary | dict | | `http://www.dictionary.com/browse/%s`
32 | eBay | ebay | | `https://www.ebay.com/sch/i.html?_nkw=%s`
33 | Github | gh | | `https://github.com/search?q=%s`
34 | Gmail search | gm | | `https://mail.google.com/mail/u/0/#search/%s`
35 | Google Drive | drive | | `https://drive.google.com/drive/search?q=%s`
36 | Google Maps | maps | | `https://www.google.com/maps/search/%s/`
37 | Google Images | img | | `https://www.google.com/search?tbm=isch&q=%s`
38 | Hacker News | hn | | `https://hn.algolia.com/?query=%s`
39 | IMDB | i | | `http://www.imdb.com/find?q=%s`
40 | LinkedIn | li | | `https://www.linkedin.com/search/results/index/?keywords=%s`
41 | Thesaurus | thes | | `http://www.thesaurus.com/browse/%s`
42 | Mailinator | maili | `maili myinbox` | `https://www.mailinator.com/v2/inbox.jsp?zone=public&query=%s`
43 | Wikipedia English | wp | | `https://en.wikipedia.org/wiki/%s`
44 | YouTube | yt | | `https://www.youtube.com/results?search_query=%s`
45 | Stack Overflow | so | | `http://stackoverflow.com/search?q=%s`
46 | Yelp | ye | | `http://www.yelp.com/search?find_desc=%s`
47 |
48 | ### Search Engines (specific to Canada / Québec)
49 |
50 | Name | Keyword | Example | Url
51 | :--- | :------ | :------ | :--
52 | Amazon Canada | amznca | | `https://www.amazon.ca/s/?field-keywords=%s`
53 | eBay Canada | ebayca | | `https://www.ebay.ca/sch/i.html?_nkw=%s`
54 | Google CAD to USD | cu | `cu 100` | `https://www.google.com/search?q=%s+cad+in+usd`
55 | Google USD to CAD | uc | `uc 100` | `https://www.google.com/search?q=%s+usd+in+cad`
56 | Linguee en -> fr | lenfr | | `https://www.linguee.com/english-french/search?query=%s`
57 | Linguee fr -> en | lfren | | `https://www.linguee.com/french-english/search?query=%s`
58 | Wikipedia French | wpfr | | `https://fr.wikipedia.org/w/index.php?search=%s`
59 | WordReference en -> fr | enfr | | `http://www.wordreference.com/enfr/%s`
60 | WordReference fr -> en | fren | | `http://www.wordreference.com/fren/%s`
61 |
62 | ### Direct access shortcuts (i.e., Omnibox shortcuts that aren't search engines)
63 |
64 | Name | Keyword | Url
65 | :--- | :------ | :--
66 | Gmail | m | `https://mail.google.com/mail/u/0/#inbox`
67 | Google Calendar | c | `https://calendar.google.com/calendar/r`
68 |
69 | ### How to Add/Edit Search Engines
70 |
71 | 1. Open Chrome
72 | 2. Right click or control click the address bar
73 | 3. Select "Edit Search Engines..."
74 | 4. Scroll through to see if the search engine you want to add is already in there—you might just need to change the keyword
75 | 5. If it's not there, scroll to the top where you can add a new search engine just as you see it here. The "Add" link/button is on the upper right.
76 |
77 | ### How to Use Them
78 | 1. Go to your address bar by either a) clicking it b) typing control-l ("L" as in Lima) on Windows c) typing command-l ("L" as in Lima) on a Mac
79 | 2. Type the keyword (e.g. `w` for Wikipedia)
80 | 3. *Don't* press enter!
81 | 4. Press space
82 | 5. Type in your search query
83 | 6. *Now* press enter
84 |
--------------------------------------------------------------------------------