122224 lines
2.6 MiB
122224 lines
2.6 MiB
// This file was (mostly) ripped from https://duckduckgo.com/bang.js
|
|
|
|
const SEARXNG_URL = import.meta.env.VITE_SEARXNG_URL as string;
|
|
const GITEA_URL = import.meta.env.VITE_GITEA_URL as string;
|
|
const OPENWEBUI_URL = import.meta.env.VITE_OPENWEBUI_URL as string;
|
|
const PLEX_URL = import.meta.env.VITE_PLEX_URL as string;
|
|
const OVERSEERR_URL = import.meta.env.VITE_OVERSEERR_URL as string;
|
|
const SONARR_URL = import.meta.env.VITE_SONARR_URL as string;
|
|
const RADARR_URL = import.meta.env.VITE_RADARR_URL as string;
|
|
const LIDARR_URL = import.meta.env.VITE_LIDARR_URL as string;
|
|
|
|
const LLAMA_MODEL = import.meta.env.VITE_LLAMA_MODEL.replace(":", "%3A") as string;
|
|
const DEEPSEEK_MODEL = import.meta.env.VITE_DEEPSEEK_MODEL.replace(":", "%3A") as string;
|
|
const OPENAI_MODEL = import.meta.env.VITE_OPENAI_MODEL as string;
|
|
const CLAUDE_MODEL = import.meta.env.VITE_CLAUDE_MODEL.replace("/", "%2F") as string;
|
|
|
|
export const bangs = [
|
|
{
|
|
c: "Online Services",
|
|
d: SEARXNG_URL,
|
|
r: 0,
|
|
s: "Searxng",
|
|
sc: "Search",
|
|
t: "s",
|
|
u: `${SEARXNG_URL}/?q={{{s}}}`,
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: GITEA_URL,
|
|
r: 0,
|
|
s: "Gitea",
|
|
sc: "Cryptocurrency",
|
|
t: "tea",
|
|
u: `${GITEA_URL}/?repo-search-query={{{s}}}`,
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: PLEX_URL,
|
|
r: 0,
|
|
s: "Plex",
|
|
sc: "Movies",
|
|
t: "plex",
|
|
u: `${PLEX_URL}/web/index.html#!/search?pivot=top&query={{{s}}}`,
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: OVERSEERR_URL,
|
|
r: 0,
|
|
s: "Overseerr",
|
|
sc: "Movies",
|
|
t: "ov",
|
|
u: `${OVERSEERR_URL}/search?query={{{s}}}`,
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: LIDARR_URL,
|
|
r: 0,
|
|
s: "Lidarr",
|
|
sc: "Music",
|
|
t: "mp3",
|
|
u: `${LIDARR_URL}/add/new?term={{{s}}}`,
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: SONARR_URL,
|
|
r: 0,
|
|
s: "Sonarr",
|
|
sc: "TV",
|
|
t: "tv",
|
|
u: `${SONARR_URL}/add/new?term={{{s}}}`,
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: RADARR_URL,
|
|
r: 0,
|
|
s: "Radarr",
|
|
sc: "Movies",
|
|
t: "mv",
|
|
u: `${RADARR_URL}/add/new?term={{{s}}}`,
|
|
},
|
|
{
|
|
c: "AI",
|
|
d: OPENWEBUI_URL,
|
|
r: 0,
|
|
s: "OpenWebUI",
|
|
sc: "AI",
|
|
t: "ai",
|
|
u: `${OPENWEBUI_URL}/?q={{{s}}}`,
|
|
},
|
|
{
|
|
c: "AI",
|
|
d: OPENWEBUI_URL,
|
|
r: 0,
|
|
s: "OpenWebUI",
|
|
sc: "AI",
|
|
t: "c",
|
|
u: `${OPENWEBUI_URL}/?q={{{s}}}`,
|
|
},
|
|
{
|
|
c: "AI",
|
|
d: OPENWEBUI_URL,
|
|
r: 0,
|
|
s: "OpenWebUI",
|
|
sc: "AI",
|
|
t: "llama",
|
|
u: `${OPENWEBUI_URL}/?models=${LLAMA_MODEL}&q={{{s}}}`,
|
|
},
|
|
{
|
|
c: "AI",
|
|
d: OPENWEBUI_URL,
|
|
r: 0,
|
|
s: "OpenWebUI",
|
|
sc: "AI",
|
|
t: "r1",
|
|
u: `${OPENWEBUI_URL}/?models=${DEEPSEEK_MODEL}&q={{{s}}}`,
|
|
},
|
|
{
|
|
c: "AI",
|
|
d: OPENWEBUI_URL,
|
|
r: 0,
|
|
s: "OpenWebUI",
|
|
sc: "AI",
|
|
t: "r1-7b",
|
|
u: `${OPENWEBUI_URL}/?models=deepseek-r1%3A7b&q={{{s}}}`,
|
|
},
|
|
{
|
|
c: "AI",
|
|
d: OPENWEBUI_URL,
|
|
r: 0,
|
|
s: "OpenWebUI",
|
|
sc: "AI",
|
|
t: "r1-32b",
|
|
u: `${OPENWEBUI_URL}/?models=deepseek-r1%3A32b&q={{{s}}}`,
|
|
},
|
|
{
|
|
c: "AI",
|
|
d: OPENWEBUI_URL,
|
|
r: 0,
|
|
s: "OpenWebUI",
|
|
sc: "AI",
|
|
t: "claude",
|
|
u: `${OPENWEBUI_URL}/?models=${CLAUDE_MODEL}&q={{{s}}}`,
|
|
},
|
|
{
|
|
c: "AI",
|
|
d: OPENWEBUI_URL,
|
|
r: 0,
|
|
s: "OpenWebUI",
|
|
sc: "AI",
|
|
t: "openai",
|
|
u: `${OPENWEBUI_URL}/?models=${OPENAI_MODEL}&q={{{s}}}`,
|
|
},
|
|
{
|
|
c: "AI",
|
|
d: OPENWEBUI_URL,
|
|
r: 0,
|
|
s: "OpenWebUI",
|
|
sc: "AI",
|
|
t: "o3-mini",
|
|
u: `${OPENWEBUI_URL}/?models=o3-mini&q={{{s}}}`,
|
|
},
|
|
{
|
|
c: "AI",
|
|
d: OPENWEBUI_URL,
|
|
r: 0,
|
|
s: "OpenWebUI",
|
|
sc: "AI",
|
|
t: "o1",
|
|
u: `${OPENWEBUI_URL}/?models=o1&q={{{s}}}`,
|
|
},
|
|
{
|
|
c: "AI",
|
|
d: OPENWEBUI_URL,
|
|
r: 0,
|
|
s: "OpenWebUI",
|
|
sc: "AI",
|
|
t: "4o-mini",
|
|
u: `${OPENWEBUI_URL}/?models=gpt-4o-mini&q={{{s}}}`,
|
|
},
|
|
{
|
|
c: "AI",
|
|
d: OPENWEBUI_URL,
|
|
r: 0,
|
|
s: "OpenWebUI",
|
|
sc: "AI",
|
|
t: "4o",
|
|
u: `${OPENWEBUI_URL}/?models=gpt-4o&q={{{s}}}`,
|
|
},
|
|
{
|
|
c: "AI",
|
|
d: "www.t3.chat",
|
|
r: 0,
|
|
s: "T3 Chat",
|
|
sc: "AI",
|
|
t: "t3",
|
|
u: "https://www.t3.chat/new?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "boxofficemojo.com",
|
|
r: 0,
|
|
s: "Box Office Mojo",
|
|
sc: "Movies",
|
|
t: "0bo",
|
|
u: "http://boxofficemojo.com/search/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "0to255.com",
|
|
r: 3,
|
|
s: "0to255",
|
|
sc: "Tools",
|
|
t: "0to255",
|
|
u: "http://0to255.com/{{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "1001boom.com",
|
|
r: 0,
|
|
s: "1001boom",
|
|
sc: "Magazine",
|
|
t: "1001",
|
|
u: "http://1001boom.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.1001fonts.com",
|
|
r: 0,
|
|
s: "1001 Fonts",
|
|
sc: "Design",
|
|
t: "1001fonts",
|
|
u: "http://www.1001fonts.com/search.html?search={{{s}}}&x=0&y=0",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.101domain.com",
|
|
r: 0,
|
|
s: "101 Domain",
|
|
sc: "Domains",
|
|
t: "101",
|
|
u: "http://www.101domain.com/domain-availability-search.htm?q={{{s}}}&sa.x=0&sa.y=0",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.101domain.com",
|
|
r: 0,
|
|
s: "101domain",
|
|
sc: "Domains",
|
|
t: "101domain",
|
|
u: "https://www.101domain.com/domain-availability-search.htm?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "1122.com.uy",
|
|
r: 0,
|
|
s: "1122",
|
|
sc: "Search",
|
|
t: "1122",
|
|
u: "https://1122.com.uy/buscar/{{{s}}}/todo-el-pais",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.1177.se",
|
|
r: 0,
|
|
s: "1177 V\u00e5rdguiden",
|
|
sc: "Health",
|
|
t: "1177",
|
|
u: "http://www.1177.se/Sok/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "11870.com",
|
|
r: 3,
|
|
s: "11870",
|
|
sc: "Food",
|
|
t: "11870",
|
|
u: "http://11870.com/konsulto?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "118.dk",
|
|
r: 0,
|
|
s: "TDC 118",
|
|
sc: "Search",
|
|
t: "118",
|
|
u: "http://118.dk/search/go?what={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.11freunde.de",
|
|
r: 0,
|
|
s: "11 Freunde",
|
|
sc: "Sports",
|
|
t: "11freunde",
|
|
u: "http://www.11freunde.de/search/gss/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "search.11st.co.kr",
|
|
r: 3,
|
|
s: "11\ubc88\uac00",
|
|
sc: "Online (intl)",
|
|
t: "11st",
|
|
u: "http://search.11st.co.kr/SearchPrdAction.tmall?method=getTotalSearchSeller&kwd={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "140journos.com",
|
|
r: 0,
|
|
s: "140journos",
|
|
sc: "General",
|
|
t: "140",
|
|
u: "https://140journos.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "14-tage-wettervorhersage.de",
|
|
r: 4,
|
|
s: "14-tage-wettervorhersage.de",
|
|
sc: "Weather",
|
|
t: "14",
|
|
u: "https://14-tage-wettervorhersage.de/suche/?q={{{s}}}&lg=de",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "b144.co.il",
|
|
r: 0,
|
|
s: "b144",
|
|
sc: "Search",
|
|
t: "144",
|
|
u: "http://b144.co.il/PrivateResults.aspx?&p_name={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.15min.lt",
|
|
r: 0,
|
|
s: "15min naujienos",
|
|
sc: "Newspaper",
|
|
t: "15min",
|
|
u: "https://www.15min.lt/paieska?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "15mpedia.org",
|
|
r: 0,
|
|
s: "15Mpedia",
|
|
sc: "General",
|
|
t: "15mpedia",
|
|
u: "https://15mpedia.org/w/index.php?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.17track.net",
|
|
r: 11,
|
|
s: "17TRACK",
|
|
sc: "Tracking",
|
|
t: "17t",
|
|
u: "http://www.17track.net/en/track?nums={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.180.no",
|
|
r: 0,
|
|
s: "180.no",
|
|
sc: "Tools",
|
|
t: "180",
|
|
u: "https://www.180.no/Search/All?w={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.1881.no",
|
|
r: 28,
|
|
s: "1881.no",
|
|
sc: "Tools",
|
|
t: "1881",
|
|
u: "http://www.1881.no/?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "1cak.com",
|
|
r: 0,
|
|
s: "1cak",
|
|
sc: "Comics",
|
|
t: "1c",
|
|
u: "https://1cak.com/search-0-{{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "1d4chan.org",
|
|
r: 3,
|
|
s: "1d4chan",
|
|
sc: "Games (general)",
|
|
t: "1d4chan",
|
|
u: "https://1d4chan.org/index.php?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "onedrive.live.com",
|
|
r: 10,
|
|
s: "OneDrive",
|
|
sc: "General",
|
|
t: "1dr",
|
|
u: "http://onedrive.live.com/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "1gabba.net",
|
|
r: 0,
|
|
s: "1gabba",
|
|
sc: "Music",
|
|
t: "1gabba",
|
|
u: "http://1gabba.net/frontpage?title={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.1mg.com",
|
|
r: 0,
|
|
s: "1mg",
|
|
sc: "Online (marketplace)",
|
|
t: "1mg",
|
|
u: "https://www.1mg.com/search/all?name={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "onepeterfive.com",
|
|
r: 0,
|
|
s: "OnePeterFive",
|
|
sc: "Online",
|
|
t: "1p5",
|
|
u: "https://onepeterfive.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.1und1.de",
|
|
r: 0,
|
|
s: "1und1",
|
|
sc: "Domains",
|
|
t: "1und1",
|
|
u: "https://www.1und1.de/suche?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.20minutes.fr",
|
|
r: 10,
|
|
s: "20 Minutes",
|
|
sc: "Newspaper",
|
|
t: "20m",
|
|
u: "http://www.20minutes.fr/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "krsk.au.ru",
|
|
r: 0,
|
|
s: "24au.ru",
|
|
sc: "Online (marketplace)",
|
|
t: "24au",
|
|
u: "https://krsk.au.ru/nextauction/?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.24matins.fr",
|
|
r: 0,
|
|
s: "24matins",
|
|
sc: "Newspaper",
|
|
t: "24matins",
|
|
u: "http://www.24matins.fr/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "24sessions.com",
|
|
r: 0,
|
|
s: "24sessions",
|
|
sc: "Startups",
|
|
t: "24sessions",
|
|
u: "http://24sessions.com/search/text:{{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "27crags.com",
|
|
r: 0,
|
|
s: "27crags",
|
|
sc: "Tools",
|
|
t: "27crags",
|
|
u: "https://27crags.com/site/search?qs={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "2b2t.miraheze.org",
|
|
r: 0,
|
|
s: "2b2t wiki",
|
|
sc: "Games (Minecraft)",
|
|
t: "2b2t",
|
|
u: "https://2b2t.miraheze.org/w/index.php?search={{{s}}}&title=Special%3ASearch&go=Go",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "find.5ch.net",
|
|
r: 0,
|
|
s: "5channel",
|
|
sc: "Forum",
|
|
t: "2channel",
|
|
u: "http://find.5ch.net/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.2dehands.be",
|
|
r: 0,
|
|
s: "2dehands.be",
|
|
sc: "Online (marketplace)",
|
|
t: "2dehands",
|
|
u: "http://www.2dehands.be/markt?qq={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.2ememain.be",
|
|
r: 0,
|
|
s: "2ememain",
|
|
sc: "Online (deals)",
|
|
t: "2eme",
|
|
u: "http://www.2ememain.be/marche/2/{{{s}}}/",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.2ememain.be",
|
|
r: 3,
|
|
s: "2ememain.be",
|
|
sc: "Online (marketplace)",
|
|
t: "2ememain",
|
|
u: "http://www.2ememain.be/marche/?qq={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "2gis.ru",
|
|
r: 6,
|
|
s: "2gis.ru",
|
|
sc: "Maps",
|
|
t: "2gis",
|
|
u: "http://2gis.ru/moscow/search/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "2gis.ru",
|
|
r: 0,
|
|
s: "2gis \u0421\u0430\u043d\u043a\u0442-\u041f\u0435\u0442\u0435\u0440\u0431\u0443\u0440\u0433",
|
|
sc: "Maps",
|
|
t: "2gissbp",
|
|
u: "https://2gis.ru/spb/search/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "2gis.ru",
|
|
r: 0,
|
|
s: "2GIS \u0423\u0444\u0430",
|
|
sc: "Maps",
|
|
t: "2gisufa",
|
|
u: "https://2gis.ru/ufa/search/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "touhoudb.com",
|
|
r: 0,
|
|
s: "TouhouDB",
|
|
sc: "Music",
|
|
t: "2hu",
|
|
u: "https://touhoudb.com/Search?filter={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.2nn.jp",
|
|
r: 24,
|
|
s: "2NN",
|
|
sc: "Online",
|
|
t: "2nn",
|
|
u: "https://www.2nn.jp/word/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "2player.com",
|
|
r: 0,
|
|
s: "2player.com",
|
|
sc: "Games (general)",
|
|
t: "2pl",
|
|
u: "http://2player.com/search/?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.2xmoinscher.com",
|
|
r: 0,
|
|
s: "2xmoinscher",
|
|
sc: "Online (marketplace)",
|
|
t: "2xmc",
|
|
u: "https://www.2xmoinscher.com/r?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "34travel.me",
|
|
r: 0,
|
|
s: "34travel.me",
|
|
sc: "Travel",
|
|
t: "34travel",
|
|
u: "https://34travel.me/search?text={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "events.ccc.de",
|
|
r: 0,
|
|
s: "35C3 Wiki",
|
|
sc: "Specialty",
|
|
t: "35c3",
|
|
u: "https://events.ccc.de/congress/2018/wiki/index.php?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.360skate.com",
|
|
r: 0,
|
|
s: "360skate.com",
|
|
sc: "Online",
|
|
t: "360",
|
|
u: "http://www.360skate.com/catalogsearch/result/?q={{{s}}} ",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.360androidapp.com",
|
|
r: 0,
|
|
s: "360androidapp",
|
|
sc: "Downloads",
|
|
t: "360app",
|
|
u: "https://www.360androidapp.com/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "image.so.com",
|
|
r: 0,
|
|
s: "360\u56fe\u7247",
|
|
sc: "Search",
|
|
t: "360iso",
|
|
u: "http://image.so.com/i?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.so.com",
|
|
r: 0,
|
|
s: "360\u641c\u7d22",
|
|
sc: "Search",
|
|
t: "360so",
|
|
u: "https://www.so.com/s?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.3bmeteo.com",
|
|
r: 41,
|
|
s: "3Bmeteo",
|
|
sc: "Weather",
|
|
t: "3bm",
|
|
u: "https://www.3bmeteo.com/meteo/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "3dagogo.com",
|
|
r: 0,
|
|
s: "3dagogo",
|
|
sc: "Design",
|
|
t: "3da",
|
|
u: "https://3dagogo.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "3dbrew.org",
|
|
r: 0,
|
|
s: "3DBrew",
|
|
sc: "Programming",
|
|
t: "3dbrew",
|
|
u: "http://3dbrew.org/wiki/Special:Search?search={{{s}}}&go=Go",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.3djuegos.com",
|
|
r: 0,
|
|
s: "3DJuegos",
|
|
sc: "Games (general)",
|
|
t: "3dj",
|
|
u: "https://www.3djuegos.com/?q={{{s}}}&zona=resultados-buscador&ni=1",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "3druck.com",
|
|
r: 0,
|
|
s: "3Druck.com",
|
|
sc: "Blogs (intl)",
|
|
t: "3druck",
|
|
u: "http://3druck.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.3ds.com",
|
|
r: 0,
|
|
s: "Dassault Syst\u00e8mes",
|
|
sc: "Companies",
|
|
t: "3ds",
|
|
u: "http://www.3ds.com/search/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "3dwarehouse.sketchup.com",
|
|
r: 0,
|
|
s: "Sketchup 3D Warehouse",
|
|
sc: "Design",
|
|
t: "3dware",
|
|
u: "https://3dwarehouse.sketchup.com/search.html?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.3gpp.org",
|
|
r: 0,
|
|
s: "3GPP Technical Specification",
|
|
sc: "Reference",
|
|
t: "3gpp",
|
|
u: "http://www.3gpp.org/DynaReport/{{{s}}}.htm",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.trojmiasto.pl",
|
|
r: 0,
|
|
s: "Tr\u00f3jmiasto",
|
|
sc: "Newspaper",
|
|
t: "3m",
|
|
u: "http://www.trojmiasto.pl/s/{{{s}}}/",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "3tailer.com",
|
|
r: 0,
|
|
s: "3tailer",
|
|
sc: "Online",
|
|
t: "3tailer",
|
|
u: "https://3tailer.com/search/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.tritrans.net",
|
|
r: 0,
|
|
s: "TriTrans",
|
|
sc: "Tools",
|
|
t: "3t",
|
|
u: "http://www.tritrans.net/cgibin/translate.cgi?spraak=Engelsk&Fra={{{s}}}&button=Translate%21",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "store.401games.ca",
|
|
r: 0,
|
|
s: "401 Games",
|
|
sc: "Online (intl)",
|
|
t: "401games",
|
|
u: "https://store.401games.ca/pages/search-results?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "profile.intra.42.fr",
|
|
r: 122,
|
|
s: "42 Intra",
|
|
sc: "Programming",
|
|
t: "42",
|
|
u: "https://profile.intra.42.fr/searches/search?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.4fitnessrules.com",
|
|
r: 70,
|
|
s: "4 Fitness Rules",
|
|
sc: "Video",
|
|
t: "4",
|
|
u: "https://www.4fitnessrules.com/workout-videos/?frm_search={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.47news.jp",
|
|
r: 0,
|
|
s: "47 News",
|
|
sc: "Newspaper (intl)",
|
|
t: "47",
|
|
u: "https://www.47news.jp/search?phrase={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "boards.4chan.org",
|
|
r: 0,
|
|
s: "4chan /b/",
|
|
sc: "Forum",
|
|
t: "4_b",
|
|
u: "http://boards.4chan.org/b/catalog#s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "implyingrigged.info",
|
|
r: 0,
|
|
s: "Implyingrigged",
|
|
sc: "Games (specific)",
|
|
t: "4cc",
|
|
u: "http://implyingrigged.info/w/index.php?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "4chan.org",
|
|
r: 748,
|
|
s: "4chan Board",
|
|
sc: "Forum",
|
|
t: "4ch",
|
|
u: "https://4chan.org/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "boards.4chan.org",
|
|
r: 0,
|
|
s: "4chan /a/ board",
|
|
sc: "Forum",
|
|
t: "4cha",
|
|
u: "https://boards.4chan.org/a/catalog#s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "duckduckgo.com",
|
|
r: 17,
|
|
s: "4chan",
|
|
sc: "Images",
|
|
t: "4chan",
|
|
u: "https://duckduckgo.com/?q={{{s}}}+site%3A4chan.org&t=ffsb",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "4chan.org",
|
|
r: 28,
|
|
s: "4chan Boards",
|
|
sc: "Misc",
|
|
t: "4chanb",
|
|
u: "http://4chan.org/b/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "boards.4chan.org",
|
|
r: 44,
|
|
s: "4chan Catalog",
|
|
sc: "Social",
|
|
t: "4chc",
|
|
u: "https://boards.4chan.org/{{{s}}}/catalog",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "boards.4chan.org",
|
|
r: 0,
|
|
s: "4chan fashion board",
|
|
sc: "Misc",
|
|
t: "4chfa",
|
|
u: "https://boards.4chan.org/fa/catalog#s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "boards.4chan.org",
|
|
r: 0,
|
|
s: "4chan technology board",
|
|
sc: "Blogs",
|
|
t: "4chg",
|
|
u: "https://boards.4chan.org/g/catalog#s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "boards.4chan.org",
|
|
r: 0,
|
|
s: "4chan international board",
|
|
sc: "Forum",
|
|
t: "4chint",
|
|
u: "https://boards.4chan.org/int/catalog#s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "boards.4chan.org",
|
|
r: 0,
|
|
s: "4chan music board",
|
|
sc: "Music",
|
|
t: "4chmu",
|
|
u: "https://boards.4chan.org/mu/catalog#s={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "boards.4chan.org",
|
|
r: 0,
|
|
s: "4chan's /news/ board",
|
|
sc: "International",
|
|
t: "4chnews",
|
|
u: "https://boards.4chan.org/news/catalog#s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "archive.nyafuu.org",
|
|
r: 0,
|
|
s: "/n/ archives",
|
|
sc: "Forum",
|
|
t: "4chn",
|
|
u: "https://archive.nyafuu.org/n/search/text/{{{s}}}/",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "boards.4chan.org",
|
|
r: 0,
|
|
s: "4chan robot board",
|
|
sc: "General",
|
|
t: "4chr9k",
|
|
u: "https://boards.4chan.org/r9k/catalog#s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "boards.4chan.org",
|
|
r: 0,
|
|
s: "4chan /b/ board",
|
|
sc: "Forum",
|
|
t: "4chrandom",
|
|
u: "https://boards.4chan.org/b/catalog#s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "4chansearch.com",
|
|
r: 0,
|
|
s: "4chansearch",
|
|
sc: "Forum",
|
|
t: "4chsearch",
|
|
u: "https://4chansearch.com/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "boards.4chan.org",
|
|
r: 0,
|
|
s: "4chan video games board",
|
|
sc: "Games (general)",
|
|
t: "4chv",
|
|
u: "https://boards.4chan.org/v/catalog#s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "boards.4chan.org",
|
|
r: 0,
|
|
s: "4chan, /vg/",
|
|
sc: "Games (general)",
|
|
t: "4cvg",
|
|
u: "http://boards.4chan.org/vg/catalog#s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "4chan.org",
|
|
r: 29,
|
|
s: "4chan - /g/ - Technology",
|
|
sc: "Blogs",
|
|
t: "4g",
|
|
u: "http://4chan.org/g/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "archive.rebeccablacktech.com",
|
|
r: 11,
|
|
s: "4chan /g/ archive",
|
|
sc: "Tools",
|
|
t: "4ga",
|
|
u: "https://archive.rebeccablacktech.com/g/search/text/{{{s}}}/",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "4pda.ru",
|
|
r: 4,
|
|
s: "4pda",
|
|
sc: "Forum",
|
|
t: "4pda",
|
|
u: "http://4pda.ru/forum/index.php?act=search&source=all&forums[]=all&query={{{s}}}&x=0&y=0",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.4players.de",
|
|
r: 0,
|
|
s: "4players",
|
|
sc: "Games (general)",
|
|
t: "4pl",
|
|
u: "http://www.4players.de/4players.php/suchergebnis/Allgemein/4players/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.4players.de",
|
|
r: 0,
|
|
s: "4players",
|
|
sc: "Games (general)",
|
|
t: "4players",
|
|
u: "http://www.4players.de/4players.php/suchergebnis/Allgemein/4players/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "archive.4plebs.org",
|
|
r: 372,
|
|
s: "4plebs Archive",
|
|
sc: "Search",
|
|
t: "4plebs",
|
|
u: "https://archive.4plebs.org/_/search/text/{{{s}}}/",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "search.4shared.com",
|
|
r: 0,
|
|
s: "4shared",
|
|
sc: "Music",
|
|
t: "4shared",
|
|
u: "http://search.4shared.com/q/CCAD/1/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.4sound.dk",
|
|
r: 0,
|
|
s: "4Sound",
|
|
sc: "Online",
|
|
t: "4sound",
|
|
u: "http://www.4sound.dk/search/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "foursquare.com",
|
|
r: 0,
|
|
s: "Foursquare",
|
|
sc: "Social",
|
|
t: "4sq",
|
|
u: "https://foursquare.com/explore?mode=url&nearGeoId=&q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.4x4community.co.za",
|
|
r: 0,
|
|
s: "4x4 Community",
|
|
sc: "Social",
|
|
t: "4x4community",
|
|
u: "http://www.4x4community.co.za/forum/threadloom/threadloom.php?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.4x4direct.co.za",
|
|
r: 0,
|
|
s: "4x4 Direct",
|
|
sc: "Online",
|
|
t: "4x4direct",
|
|
u: "http://www.4x4direct.co.za/search?controller=search&orderby=position&orderway=desc&search_query={{{s}}}&submit_search=",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "prime.500px.com",
|
|
r: 0,
|
|
s: "500px",
|
|
sc: "Images",
|
|
t: "500",
|
|
u: "https://prime.500px.com/search/keywords={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "500px.com",
|
|
r: 3,
|
|
s: "500px",
|
|
sc: "Images",
|
|
t: "500px",
|
|
u: "https://500px.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "food52.com",
|
|
r: 7,
|
|
s: "Food52",
|
|
sc: "Food",
|
|
t: "52",
|
|
u: "http://food52.com/recipes/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "fivethirtyeight.com",
|
|
r: 26,
|
|
s: "fivethirtyeight.com",
|
|
sc: "Academic",
|
|
t: "538",
|
|
u: "http://fivethirtyeight.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.quintoandar.com.br",
|
|
r: 0,
|
|
s: "QuintoAndar",
|
|
sc: "Services",
|
|
t: "5a",
|
|
u: "https://www.quintoandar.com.br/alugar/imovel/{{{s}}}/",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "find.5ch.net",
|
|
r: 216,
|
|
s: "5\u3061\u3083\u3093\u306d\u308b",
|
|
sc: "Social",
|
|
t: "5ch",
|
|
u: "https://find.5ch.net/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "find.5ch.net",
|
|
r: 6,
|
|
s: "5channel",
|
|
sc: "Forum",
|
|
t: "5channel",
|
|
u: "http://find.5ch.net/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "engl393-dnd5th.wikia.com",
|
|
r: 5,
|
|
s: "D&D 5e Wiki",
|
|
sc: "Games (general)",
|
|
t: "5e",
|
|
u: "http://engl393-dnd5th.wikia.com/wiki/Special:Search?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "dnd5e.wikidot.com",
|
|
r: 0,
|
|
s: "D&D 5e Wikidot",
|
|
sc: "Games (offline)",
|
|
t: "5ew",
|
|
u: "http://dnd5e.wikidot.com/search:site/a/p/q/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "fiverr.com",
|
|
r: 54,
|
|
s: "Fiverr",
|
|
sc: "Jobs",
|
|
t: "5",
|
|
u: "http://fiverr.com/gigs/search?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.gta5-mods.com",
|
|
r: 0,
|
|
s: "GTA 5 Mods",
|
|
sc: "Games (general)",
|
|
t: "5mods",
|
|
u: "https://www.gta5-mods.com/search/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.6pm.com",
|
|
r: 0,
|
|
s: "6pm.com",
|
|
sc: "Online (deals)",
|
|
t: "6pm",
|
|
u: "https://www.6pm.com/search?term={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.750g.com",
|
|
r: 0,
|
|
s: "750g",
|
|
sc: "Food",
|
|
t: "750g",
|
|
u: "https://www.750g.com/recherche.htm?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.7digital.com",
|
|
r: 0,
|
|
s: "7digital",
|
|
sc: "Music",
|
|
t: "7digital",
|
|
u: "https://www.7digital.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "no.7digital.com",
|
|
r: 0,
|
|
s: "7digital (Norway)",
|
|
sc: "Online",
|
|
t: "7digitalno",
|
|
u: "https://no.7digital.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.7switch.com",
|
|
r: 0,
|
|
s: "7switch",
|
|
sc: "Books",
|
|
t: "7switch",
|
|
u: "https://www.7switch.com/fr/list/search/page/1?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.7tv.de",
|
|
r: 0,
|
|
s: "7TV",
|
|
sc: "Video",
|
|
t: "7tv",
|
|
u: "https://www.7tv.de/suche?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "800notes.com",
|
|
r: 17,
|
|
s: "800notes.com",
|
|
sc: "Search",
|
|
t: "800",
|
|
u: "http://800notes.com/Phone.aspx/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "8020.net",
|
|
r: 0,
|
|
s: "80/20",
|
|
sc: "Tech",
|
|
t: "8020",
|
|
u: "https://8020.net/freetextsearch/search/result/?keyword={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "80000hours.org",
|
|
r: 0,
|
|
s: "80,000 hours",
|
|
sc: "Topical",
|
|
t: "80k",
|
|
u: "https://80000hours.org/search/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.lightfm.com.au",
|
|
r: 0,
|
|
s: "89.9 LightFM",
|
|
sc: "Radio",
|
|
t: "89.9",
|
|
u: "https://www.lightfm.com.au/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.8a.nu",
|
|
r: 0,
|
|
s: "8a.nu",
|
|
sc: "Sports",
|
|
t: "8a",
|
|
u: "https://www.8a.nu/scorecard/Search.aspx?Mode=SIMPLE&AscentType=0&CragName={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "8ch.net",
|
|
r: 0,
|
|
s: "8chan Boards",
|
|
sc: "Misc",
|
|
t: "8chb",
|
|
u: "http://8ch.net/boards.php?title={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "8ch.net",
|
|
r: 0,
|
|
s: "8chan Board Catalogs",
|
|
sc: "Forum",
|
|
t: "8chc",
|
|
u: "http://8ch.net/{{{s}}}/catalog.html",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "8tracks.com",
|
|
r: 0,
|
|
s: "8tracks",
|
|
sc: "Music",
|
|
t: "8tracks",
|
|
u: "http://8tracks.com/explore/all?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.911tabs.com",
|
|
r: 0,
|
|
s: "911tabs",
|
|
sc: "Music",
|
|
t: "911",
|
|
u: "http://www.911tabs.com/search.php?search={{{s}}}&type=band",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.911tabs.com",
|
|
r: 0,
|
|
s: "911 Tabs (Songs)",
|
|
sc: "Music",
|
|
t: "911s",
|
|
u: "http://www.911tabs.com/search.php?search={{{s}}}&type=song",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.91mobiles.com",
|
|
r: 3,
|
|
s: "91 mobiles",
|
|
sc: "Tech",
|
|
t: "91",
|
|
u: "http://www.91mobiles.com/topic/{{{s}}}/all",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "931women.com",
|
|
r: 0,
|
|
s: "\u81ed\u3044\u5973\u6027\u304b\u3089\u5352\u696d\u5ba3\u8a00",
|
|
sc: "Blogs",
|
|
t: "931women",
|
|
u: "https://931women.com/?s={{{s}}}: ",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "hermetic.com",
|
|
r: 0,
|
|
s: "The Hermetic Library",
|
|
sc: "Reference (religion)",
|
|
t: "93",
|
|
u: "https://hermetic.com/index?do=search&id={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "cse.google.com",
|
|
r: 0,
|
|
s: "9to5google",
|
|
sc: "Blogs",
|
|
t: "95g",
|
|
u: "https://cse.google.com/cse?cx=008464549922976904202:uxmexxzm3k4&q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "9to5google.com",
|
|
r: 0,
|
|
s: "9to5Google",
|
|
sc: "Blogs",
|
|
t: "95google",
|
|
u: "https://9to5google.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "9to5mac.com",
|
|
r: 37,
|
|
s: "9to5Mac",
|
|
sc: "Blogs",
|
|
t: "95mac",
|
|
u: "http://9to5mac.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "990finder.foundationcenter.org",
|
|
r: 0,
|
|
s: "990 Search (Foundation Center)",
|
|
sc: "Reference",
|
|
t: "990",
|
|
u: "http://990finder.foundationcenter.org/990results.aspx?990_type=&fn={{{s}}}&st=&zp=&ei=&fy=&action=Search",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "999.md",
|
|
r: 0,
|
|
s: "999.md",
|
|
sc: "Online (marketplace)",
|
|
t: "999",
|
|
u: "https://999.md/ru/search?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "9pp.co",
|
|
r: 36,
|
|
s: "9pp.co",
|
|
sc: "Games (general)",
|
|
t: "9",
|
|
u: "http://9pp.co/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "99quotes.me",
|
|
r: 0,
|
|
s: "99 Quotes",
|
|
sc: "Books",
|
|
t: "99quotes",
|
|
u: "https://99quotes.me/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "9gag.com",
|
|
r: 213,
|
|
s: "9gag",
|
|
sc: "Comics",
|
|
t: "9g",
|
|
u: "http://9gag.com/search?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "9gag.com",
|
|
r: 305,
|
|
s: "9gag",
|
|
sc: "Comics",
|
|
t: "9gag",
|
|
u: "https://9gag.com/search?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "alternativeto.net",
|
|
r: 198,
|
|
s: "AlternativeTo.net",
|
|
sc: "Downloads",
|
|
t: "a2",
|
|
u: "http://alternativeto.net/browse/search/?q={{{s}}}&ignoreExactMatch=true",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "v5.angular.io",
|
|
r: 0,
|
|
s: "Angular.io v5",
|
|
sc: "Libraries/Frameworks",
|
|
t: "a5",
|
|
u: "https://v5.angular.io/api?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "v6.angular.io",
|
|
r: 0,
|
|
s: "Angular.io v6",
|
|
sc: "Libraries/Frameworks",
|
|
t: "a6",
|
|
u: "https://v6.angular.io/api?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "v7.angular.io",
|
|
r: 0,
|
|
s: "Angular.io v7",
|
|
sc: "Libraries/Frameworks",
|
|
t: "a7",
|
|
u: "https://v7.angular.io/api?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "careers-calstate.aaa.com",
|
|
r: 3,
|
|
s: "AAA",
|
|
sc: "Jobs",
|
|
t: "aaa",
|
|
u: "https://careers-calstate.aaa.com/search-results?keywords={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "aktueladam.com",
|
|
r: 0,
|
|
s: "Akt\u00fcel Adam",
|
|
sc: "Online",
|
|
t: "a.a",
|
|
u: "https://aktueladam.com/?s={{{s}}} ",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.com",
|
|
r: 12,
|
|
s: "Amazon Automotive",
|
|
sc: "Online",
|
|
t: "aa",
|
|
u: "http://www.amazon.com/s/&url=search-alias%3Dautomotive&field-keywords={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.aadl.org",
|
|
r: 0,
|
|
s: "Ann Arbor District Library",
|
|
sc: "General",
|
|
t: "aadl",
|
|
u: "http://www.aadl.org/catalog/search/keyword/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.albumartexchange.com",
|
|
r: 0,
|
|
s: "Album Art Exchange",
|
|
sc: "Music",
|
|
t: "aae",
|
|
u: "http://www.albumartexchange.com/covers.php?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.allaboutjazz.com",
|
|
r: 0,
|
|
s: "All About Jazz",
|
|
sc: "Audio",
|
|
t: "aaj",
|
|
u: "https://www.allaboutjazz.com/php/article_center.php?in_artist={{{s}}}&in_album=&in_label=&in_author=&in_type=0&orderby=dt_pub",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.aakb.dk",
|
|
r: 0,
|
|
s: "Aarhus Bibliotekerne",
|
|
sc: "Books",
|
|
t: "aakb",
|
|
u: "https://www.aakb.dk/search/ting/{{{s}}}?",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "careers.aam.com",
|
|
r: 0,
|
|
s: "AAM",
|
|
sc: "Jobs",
|
|
t: "aam",
|
|
u: "https://careers.aam.com/us/en/search-results?keywords={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.com",
|
|
r: 33856,
|
|
s: "Amazon.com",
|
|
sc: "Online",
|
|
t: "a",
|
|
u: "https://www.amazon.com/s?k={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "duckduckgo.com",
|
|
r: 0,
|
|
s: "Aamulehti",
|
|
sc: "Magazine",
|
|
t: "aamulehti",
|
|
u: "https://duckduckgo.com/?sites=www.aamulehti.fi&kh=1&q={{{s}}}&ia=web",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.aptoide.com",
|
|
r: 0,
|
|
s: "Aptoide",
|
|
sc: "Downloads (apps)",
|
|
t: "aapt",
|
|
u: "http://www.aptoide.com/search/view?search_top= {{{s}}} &x=0&y=0",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.aardwolf.com",
|
|
r: 0,
|
|
s: "AardWiki",
|
|
sc: "Games (specific)",
|
|
t: "aard",
|
|
u: "http://www.aardwolf.com/wiki/index.php/Site/Search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "aare.edu.ee",
|
|
r: 0,
|
|
s: "Estonian - English - Estonian Dictionary",
|
|
sc: "Reference (words intl)",
|
|
t: "aare",
|
|
u: "https://aare.edu.ee/dictionary.html?query={{{s}}}&lang=ee",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.de",
|
|
r: 0,
|
|
s: "Amazon Austria",
|
|
sc: "Online",
|
|
t: "a.at",
|
|
u: "https://www.amazon.de/s?k={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.getty.edu",
|
|
r: 0,
|
|
s: "Art & Architecture Thesaurus\u00ae Online",
|
|
sc: "Reference (words)",
|
|
t: "aat",
|
|
u: "http://www.getty.edu/vow/AATServlet?english=N&find={{{s}}}&logic=AND&page=1¬e=",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.com.au",
|
|
r: 244,
|
|
s: "Amazon Australia",
|
|
sc: "Online",
|
|
t: "aau",
|
|
u: "https://www.amazon.com.au/s?k={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "aceattorney.wikia.com",
|
|
r: 3,
|
|
s: "Ace Attorney Wiki",
|
|
sc: "Games (specific)",
|
|
t: "aaw",
|
|
u: "http://aceattorney.wikia.com/wiki/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.albumartexchange.com",
|
|
r: 0,
|
|
s: "Album Art Exchange",
|
|
sc: "Music",
|
|
t: "\u00e0ax",
|
|
u: "http://www.albumartexchange.com/covers?fltr=ALL&sort=TITLE&q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.albumartexchange.com",
|
|
r: 0,
|
|
s: "Album Art Exchange",
|
|
sc: "Music",
|
|
t: "aax",
|
|
u: "http://www.albumartexchange.com/covers.php?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Translation",
|
|
d: "dictionary.abadis.ir",
|
|
r: 0,
|
|
s: "Abadis English to Persian dictionary",
|
|
sc: "General",
|
|
t: "abadise",
|
|
u: "https://dictionary.abadis.ir/?LnType=entofa&Word={{{s}}}",
|
|
},
|
|
{
|
|
c: "Translation",
|
|
d: "dictionary.abadis.ir",
|
|
r: 0,
|
|
s: "Abadis Persian to English dictionary ",
|
|
sc: "General",
|
|
t: "abadisf",
|
|
u: "https://dictionary.abadis.ir/?lntype=fatoen&word={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "airbitz.co",
|
|
r: 3,
|
|
s: "Airbitz",
|
|
sc: "Search",
|
|
t: "ab",
|
|
u: "http://airbitz.co/search?term={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.abandonia.com",
|
|
r: 0,
|
|
s: "Abandonia",
|
|
sc: "Games (general)",
|
|
t: "abandonia",
|
|
u: "http://www.abandonia.com/en/search_abandonia/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "new.abb.com",
|
|
r: 0,
|
|
s: "ABB",
|
|
sc: "Online",
|
|
t: "abb",
|
|
u: "https://new.abb.com/search/results#query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.jobs.abbott",
|
|
r: 0,
|
|
s: "Abbott",
|
|
sc: "Jobs",
|
|
t: "abbott",
|
|
u: "https://www.jobs.abbott/us/en/search-results?keywords={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.abbreviations.com",
|
|
r: 27,
|
|
s: "Abbreviations.com",
|
|
sc: "Reference (words)",
|
|
t: "abbr",
|
|
u: "http://www.abbreviations.com/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.abbuc.de",
|
|
r: 0,
|
|
s: "Abbuc e.V.",
|
|
sc: "Blogs (intl)",
|
|
t: "abbuc",
|
|
u: "http://www.abbuc.de/component/search/?searchword={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "abcnotation.com",
|
|
r: 0,
|
|
s: "abcnotation",
|
|
sc: "Music (Folk)",
|
|
t: "abc",
|
|
u: "http://abcnotation.com/searchTunes?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.abcam.com",
|
|
r: 0,
|
|
s: "Abcam",
|
|
sc: "Academic (biology)",
|
|
t: "abcam",
|
|
u: "https://www.abcam.com/products?keywords={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "search.abc.net.au",
|
|
r: 0,
|
|
s: "ABC Australia",
|
|
sc: "Broadcast",
|
|
t: "abcau",
|
|
u: "http://search.abc.net.au/s/search.html?query={{{s}}}&collection=abcall_meta&form=simple",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.abcgames.cz",
|
|
r: 0,
|
|
s: "ABCgames.cz",
|
|
sc: "Games (general)",
|
|
t: "abcgames",
|
|
u: "http://www.abcgames.cz/?p=sekcia_hladaj&key={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "abcnews.go.com",
|
|
r: 62,
|
|
s: "ABCNews",
|
|
sc: "Broadcast",
|
|
t: "abcnews",
|
|
u: "http://abcnews.go.com/search?searchtext={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "abcnotation.com",
|
|
r: 0,
|
|
s: "abcnotation.com",
|
|
sc: "Music",
|
|
t: "abcnotation",
|
|
u: "http://abcnotation.com/searchTunes?q={{{s}}}&f=c&o=a&s=0",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.abcya.com",
|
|
r: 0,
|
|
s: "abcya",
|
|
sc: "Games (offline)",
|
|
t: "abcya",
|
|
u: "https://www.abcya.com/search/?term={{{s}}}&type={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.abesmarket.com",
|
|
r: 13,
|
|
s: "Abe's Market",
|
|
sc: "Online",
|
|
t: "abe",
|
|
u: "http://www.abesmarket.com/catalogsearch/result/?cat=5&order=relevance&dir=desc&q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.abebooks.com",
|
|
r: 67,
|
|
s: "abebooks",
|
|
sc: "Learning",
|
|
t: "abebooks",
|
|
u: "http://www.abebooks.com/servlet/SearchResults?kn={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.abebooks.de",
|
|
r: 0,
|
|
s: "AbeBooks.de",
|
|
sc: "Online",
|
|
t: "abebooksde",
|
|
u: "http://www.abebooks.de/servlet/SearchResults?kn={{{s}}}&sts=t&x=0&y=0",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.lingvo-online.ru",
|
|
r: 0,
|
|
s: "Abbyy Dictionary En-Ru",
|
|
sc: "Tools",
|
|
t: "ab-er",
|
|
u: "http://www.lingvo-online.ru/en/Translate/en-ru/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.abebooks.co.uk",
|
|
r: 14,
|
|
s: "abebooks uk",
|
|
sc: "Online",
|
|
t: "abeuk",
|
|
u: "http://www.abebooks.co.uk/servlet/SearchResults?kn={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "mobile.bahn.de",
|
|
r: 5,
|
|
s: "Abfahrtsplan Deutsche Bahn",
|
|
sc: "Tools",
|
|
t: "abfahrt",
|
|
u: "https://mobile.bahn.de/bin/mobil/bhftafel.exe/dox?input={{{s}}}&productsFilter=1111111111000000&time=actual&maxJourneys=40&start=Suchen&boardType=Abfahrt&rt=1",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.abiunity.de",
|
|
r: 0,
|
|
s: "abiunity",
|
|
sc: "Learning",
|
|
t: "abiunity",
|
|
u: "https://www.abiunity.de/datenbank.php?boardid=48#!v=searchdb&search={{{s}}}&boardid=48",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "abr.business.gov.au",
|
|
r: 0,
|
|
s: "ABN Lookup",
|
|
sc: "Government",
|
|
t: "abn",
|
|
u: "http://abr.business.gov.au/Search.aspx?SearchText={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.airbnb.com",
|
|
r: 0,
|
|
s: "Airbnb",
|
|
sc: "Tools",
|
|
t: "abnb",
|
|
u: "https://www.airbnb.com/s/{{{s}}}/all",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "abo.finna.fi",
|
|
r: 0,
|
|
s: "https://abo.finna.fi/",
|
|
sc: "Learning",
|
|
t: "abol",
|
|
u: "https://abo.finna.fi/Search/Results?lookfor={{{s}}}&type=AllFields",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "search.about.com",
|
|
r: 0,
|
|
s: "About.com",
|
|
sc: "Search",
|
|
t: "about",
|
|
u: "http://search.about.com/fullsearch.htm?terms={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.com.br",
|
|
r: 400,
|
|
s: "Amazon Brazil",
|
|
sc: "Online",
|
|
t: "abr",
|
|
u: "https://www.amazon.com.br/s?k={{{s}}} ",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.abretelibro.com",
|
|
r: 0,
|
|
s: "\u00c1bretelibro",
|
|
sc: "Forum",
|
|
t: "abretelibro",
|
|
u: "http://www.abretelibro.com/foro/search.php?keywords={{{s}}}&sf=titleonly",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.allbookstores.com",
|
|
r: 0,
|
|
s: "AllBookstores",
|
|
sc: "Online (deals)",
|
|
t: "abs",
|
|
u: "http://www.allbookstores.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "aberdeenshire.gov.uk",
|
|
r: 0,
|
|
s: "Aberdeenshire council",
|
|
sc: "Government",
|
|
t: "abshire",
|
|
u: "http://aberdeenshire.gov.uk/search?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "miabuelavende.com",
|
|
r: 0,
|
|
s: "Mi abuela vende",
|
|
sc: "Online (marketplace)",
|
|
t: "abuela",
|
|
u: "http://miabuelavende.com/?s={{{s}}}&post_type=product",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.abuseipdb.com",
|
|
r: 15,
|
|
s: "AbuseIPDB",
|
|
sc: "Sysadmin",
|
|
t: "abuseip",
|
|
u: "https://www.abuseipdb.com/check/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "wall.alphacoders.com",
|
|
r: 0,
|
|
s: "Wallpaper Abyss",
|
|
sc: "Images",
|
|
t: "abyss",
|
|
u: "http://wall.alphacoders.com/search.php?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.ca",
|
|
r: 686,
|
|
s: "Amazon.ca",
|
|
sc: "Online (intl)",
|
|
t: "aca",
|
|
u: "https://www.amazon.ca/s?k={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.academia.edu",
|
|
r: 8,
|
|
s: "academia.edu",
|
|
sc: "Academic",
|
|
t: "academia",
|
|
u: "http://www.academia.edu/people/search?utf8=%E2%9C%93&q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "academicearth.org",
|
|
r: 0,
|
|
s: "Academic Earth",
|
|
sc: "Academic",
|
|
t: "academicearth",
|
|
u: "https://academicearth.org/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "dic.academic.ru",
|
|
r: 0,
|
|
s: "http://dic.academic.ru/",
|
|
sc: "Academic",
|
|
t: "acad",
|
|
u: "http://dic.academic.ru/searchall.php?SWord={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.allocine.fr",
|
|
r: 22,
|
|
s: "Allocin\u00e9",
|
|
sc: "Movies",
|
|
t: "ac",
|
|
u: "http://www.allocine.fr/recherche/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "americancustomboxes.com",
|
|
r: 0,
|
|
s: "American Custom Boxes",
|
|
sc: "Services",
|
|
t: "acb",
|
|
u: "https://americancustomboxes.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "aleth.io",
|
|
r: 0,
|
|
s: "aleth.io account address",
|
|
sc: "Cryptocurrency",
|
|
t: "acc",
|
|
u: "https://aleth.io/account/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.accc.gov.au",
|
|
r: 0,
|
|
s: "Australian Competition and Consumer Commission",
|
|
sc: "Government",
|
|
t: "accc",
|
|
u: "https://www.accc.gov.au/site-search/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.accountcia.com",
|
|
r: 0,
|
|
s: "Accountcia",
|
|
sc: "Search",
|
|
t: "accountcia",
|
|
u: "https://www.accountcia.com/?geodir_search=1&stype=gd_place&sgd_placecategory%5B%5D=&s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.accountkiller.com",
|
|
r: 0,
|
|
s: "Account Killer",
|
|
sc: "Tools",
|
|
t: "accountkiller",
|
|
u: "http://www.accountkiller.com/en/delete-{{{s}}}-account",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.accuweather.com",
|
|
r: 17,
|
|
s: "AccuWeather",
|
|
sc: "Weather",
|
|
t: "accuweather",
|
|
u: "http://www.accuweather.com/us-city-list.asp?zipcode={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.acehardware.com",
|
|
r: 9,
|
|
s: "Ace Hardware",
|
|
sc: "Big box/department",
|
|
t: "ace",
|
|
u: "http://www.acehardware.com/search/index.jsp?kwCatId=&kw={{{s}}}&origkw={{{s}}}&f=Taxonomy/ACE/19541496&sr=1",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "forum.acelaboratory.com",
|
|
r: 0,
|
|
s: "AceLab official forum",
|
|
sc: "Companies",
|
|
t: "aceforum",
|
|
u: "http://forum.acelaboratory.com/search.php?keywords={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "us.acer.com",
|
|
r: 0,
|
|
s: "Acer",
|
|
sc: "Companies",
|
|
t: "acer",
|
|
u: "http://us.acer.com/ac/en/US/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.acfun.cn",
|
|
r: 0,
|
|
s: "AcFun",
|
|
sc: "Video",
|
|
t: "acfun",
|
|
u: "http://www.acfun.cn/search/?#query={{{s}}} ",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.archchinese.com",
|
|
r: 3,
|
|
s: "Arch Chinese",
|
|
sc: "Reference (words intl)",
|
|
t: "ach",
|
|
u: "http://www.archchinese.com/chinese_english_dictionary.html?find={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.amarchitrakatha.com",
|
|
r: 0,
|
|
s: "Amar Chitra Katha Complete Collection",
|
|
sc: "Comics",
|
|
t: "ackuc",
|
|
u: "https://www.amarchitrakatha.com/us/catalogsearch/result/?cat=0&q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.aclweb.org",
|
|
r: 4,
|
|
s: "ACL Anthology",
|
|
sc: "Academic (math/cs)",
|
|
t: "acl",
|
|
u: "https://www.aclweb.org/anthology/search/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.aclu.org",
|
|
r: 0,
|
|
s: "American Civil Liberties Union",
|
|
sc: "Law",
|
|
t: "aclu",
|
|
u: "https://www.aclu.org/search/{{{s}}}?show_aff=1",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "dl.acm.org",
|
|
r: 0,
|
|
s: "ACM Guide",
|
|
sc: "Academic (math/cs)",
|
|
t: "acm",
|
|
u: "http://dl.acm.org/results.cfm?dlr=GUIDE&query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "dl.acm.org",
|
|
r: 3,
|
|
s: "ACM Digital Library",
|
|
sc: "Academic",
|
|
t: "acmdl",
|
|
u: "https://dl.acm.org/results.cfm?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.cn",
|
|
r: 0,
|
|
s: "Amazon.cn",
|
|
sc: "Online (intl)",
|
|
t: "acn",
|
|
u: "https://www.amazon.cn/s?k={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.acne.org",
|
|
r: 0,
|
|
s: "Acne.org",
|
|
sc: "Health",
|
|
t: "acne",
|
|
u: "https://www.acne.org/search.php?i=&q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "applecoach.nl",
|
|
r: 0,
|
|
s: "Apple Coach",
|
|
sc: "Blogs",
|
|
t: "acnl",
|
|
u: "https://applecoach.nl/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "cortas.elpais.com",
|
|
r: 0,
|
|
s: "Cortas",
|
|
sc: "Tools (URLs)",
|
|
t: "acortar",
|
|
u: "http://cortas.elpais.com/encode.pl?u=http://{{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "plugins.cordova.io",
|
|
r: 0,
|
|
s: "Apache Cordova Plugins Registry",
|
|
sc: "Programming",
|
|
t: "acp",
|
|
u: "http://plugins.cordova.io/#/search?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "acquiredby.co",
|
|
r: 0,
|
|
s: "AcquiredBy",
|
|
sc: "Companies",
|
|
t: "acquiredby",
|
|
u: "https://acquiredby.co/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.acronymfinder.com",
|
|
r: 5,
|
|
s: "Acronym Finder",
|
|
sc: "Reference (words)",
|
|
t: "acr",
|
|
u: "http://www.acronymfinder.com/{{{s}}}.html",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.acronymfinder.com",
|
|
r: 51,
|
|
s: "Acronyms",
|
|
sc: "Reference (words)",
|
|
t: "acro",
|
|
u: "http://www.acronymfinder.com/~/search/af.aspx?string=exact&Acronym={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.acronymfinder.com",
|
|
r: 16,
|
|
s: "Acronyms",
|
|
sc: "Reference (words)",
|
|
t: "acronym",
|
|
u: "http://www.acronymfinder.com/~/search/af.aspx?string=exact&Acronym={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.acronymfinder.com",
|
|
r: 0,
|
|
s: "Acronyms",
|
|
sc: "Reference (words)",
|
|
t: "acronyms",
|
|
u: "http://www.acronymfinder.com/~/search/af.aspx?string=exact&Acronym={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "pubs.acs.org",
|
|
r: 0,
|
|
s: "http://pubs.acs.org/",
|
|
sc: "Academic",
|
|
t: "acs",
|
|
u: "http://pubs.acs.org/action/doSearch?AllField={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.activestate.com",
|
|
r: 0,
|
|
s: "ActiveState.com",
|
|
sc: "Academic",
|
|
t: "activestate",
|
|
u: "http://www.activestate.com/search/index.html?cx=005567415255730122040%3Aiof7ftsiexy&cof=FORID%3A11&sa.x=0&sa.y=0&q={{{s}}}#1013",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.actuly.fr",
|
|
r: 0,
|
|
s: "actuly",
|
|
sc: "Newspaper",
|
|
t: "actuly",
|
|
u: "https://www.actuly.fr/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "acurazine.com",
|
|
r: 0,
|
|
s: "AcuraZine",
|
|
sc: "Topical",
|
|
t: "acurazine",
|
|
u: "http://acurazine.com/forums/search.php?do=showgcs&query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "animalcrossing.wikia.com",
|
|
r: 0,
|
|
s: "Animal Crossing Wikia ",
|
|
sc: "Games (general)",
|
|
t: "acw",
|
|
u: "http://animalcrossing.wikia.com/wiki/Special:Search?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "assassinscreed.fandom.com",
|
|
r: 0,
|
|
s: "Assassin's Creed Wiki",
|
|
sc: "Games (specific)",
|
|
t: "acwiki",
|
|
u: "https://assassinscreed.fandom.com/wiki/Special:Search?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.ada-auth.org",
|
|
r: 0,
|
|
s: "Ada 2005 Manual",
|
|
sc: "Academic",
|
|
t: "ada",
|
|
u: "http://www.ada-auth.org/search-rm05.cgi?SearchA={{{s}}}&SearchO=&SearchN=",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "blog.adafruit.com",
|
|
r: 0,
|
|
s: "Adafruit",
|
|
sc: "Blogs",
|
|
t: "adablog",
|
|
u: "https://blog.adafruit.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "adaderana.lk",
|
|
r: 0,
|
|
s: "AdaDerana",
|
|
sc: "Newspaper",
|
|
t: "adaderana",
|
|
u: "http://adaderana.lk/search_results.php?mode=1&show=1&query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.adafruit.com",
|
|
r: 7,
|
|
s: "Adafruit",
|
|
sc: "Tech",
|
|
t: "adafruit",
|
|
u: "https://www.adafruit.com/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.adagio.com",
|
|
r: 0,
|
|
s: "Adagio Teas",
|
|
sc: "Online",
|
|
t: "adagio",
|
|
u: "http://www.adagio.com/search/index.html?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "apple.stackexchange.com",
|
|
r: 7,
|
|
s: "Ask Different",
|
|
sc: "Forum",
|
|
t: "ad",
|
|
u: "http://apple.stackexchange.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "arquivodabola.com.br",
|
|
r: 0,
|
|
s: "Arquivo da Bola",
|
|
sc: "Sports",
|
|
t: "adb",
|
|
u: "http://arquivodabola.com.br/busca.html?termo={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "developer.apple.com",
|
|
r: 0,
|
|
s: "Apple Developer Center",
|
|
sc: "Programming",
|
|
t: "adc",
|
|
u: "https://developer.apple.com/search/index.php?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.addgene.org",
|
|
r: 3,
|
|
s: "Addgene",
|
|
sc: "Reference (science)",
|
|
t: "addgene",
|
|
u: "https://www.addgene.org/search/advanced/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.addictinggames.com",
|
|
r: 0,
|
|
s: "Addicting Games",
|
|
sc: "Games (general)",
|
|
t: "addicting",
|
|
u: "http://www.addictinggames.com/search/games.jsp?gameKeyword={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.addictinggames.com",
|
|
r: 0,
|
|
s: "Addicting Games",
|
|
sc: "Games (general)",
|
|
t: "addicting-games",
|
|
u: "http://www.addictinggames.com/search/games.jsp?gameKeyword={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "addons.prestashop.com",
|
|
r: 7,
|
|
s: "PrestaShop Addons",
|
|
sc: "Downloads (add-ons)",
|
|
t: "addons",
|
|
u: "http://addons.prestashop.com/fr/recherche?search_query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "getpocket.com",
|
|
r: 0,
|
|
s: "Add to Pocket",
|
|
sc: "Tools (URLs)",
|
|
t: "addtopocket",
|
|
u: "https://getpocket.com/edit?url={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.de",
|
|
r: 38,
|
|
s: "Amazon.de",
|
|
sc: "Online",
|
|
t: "a.de",
|
|
u: "https://www.amazon.de/s?k={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.de",
|
|
r: 4167,
|
|
s: "Amazon.de",
|
|
sc: "Online (intl)",
|
|
t: "ade",
|
|
u: "https://www.amazon.de/s?k={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.de",
|
|
r: 0,
|
|
s: "Amazon.de Fremdsprachige B\u00fccher",
|
|
sc: "Online",
|
|
t: "adefb",
|
|
u: "https://www.amazon.de/s?k={{{s}}}&i=english-books",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "woerterbuchnetz.de",
|
|
r: 0,
|
|
s: "Adelung: Grammatisch-Kritisches W\u00f6rterbuch der Hochdeutschen Mundart",
|
|
sc: "Reference (words)",
|
|
t: "adelung",
|
|
u: "http://woerterbuchnetz.de/Adelung/?lemma={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "smile.amazon.de",
|
|
r: 8,
|
|
s: "Amazon.de Smile",
|
|
sc: "Online",
|
|
t: "ades",
|
|
u: "https://smile.amazon.de/s/ref=nb_sb_noss?field-keywords={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "developer.apple.com",
|
|
r: 50,
|
|
s: "Apple Developer",
|
|
sc: "Programming",
|
|
t: "adev",
|
|
u: "https://developer.apple.com/search/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "forums.developer.apple.com",
|
|
r: 0,
|
|
s: "Apple dev form",
|
|
sc: "Programming",
|
|
t: "adf",
|
|
u: "https://forums.developer.apple.com/search.jspa?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.adiglobaldistribution.us",
|
|
r: 0,
|
|
s: "ADI",
|
|
sc: "Online",
|
|
t: "adi",
|
|
u: "https://www.adiglobaldistribution.us/search?criteria={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.adidas.fr",
|
|
r: 0,
|
|
s: "adidas",
|
|
sc: "Online",
|
|
t: "adidas",
|
|
u: "http://www.adidas.fr/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "adjective1.com",
|
|
r: 0,
|
|
s: "Adjective1",
|
|
sc: "General",
|
|
t: "adjective",
|
|
u: "http://adjective1.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.adlibris.com",
|
|
r: 4,
|
|
s: "Adlibris",
|
|
sc: "Online",
|
|
t: "adlibris",
|
|
u: "https://www.adlibris.com/se/sok?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.adlibris.com",
|
|
r: 0,
|
|
s: "AdLibris DK",
|
|
sc: "Online",
|
|
t: "adlibrisdk",
|
|
u: "http://www.adlibris.com/dk/searchresult.aspx?search=quickfirstpage&quickvalue={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.adlibris.com",
|
|
r: 0,
|
|
s: "AdLibris FI",
|
|
sc: "Online",
|
|
t: "adlibrisfi",
|
|
u: "http://www.adlibris.com/fi/searchresult.aspx?search=quickfirstpage&quickvalue={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.adlibris.com",
|
|
r: 0,
|
|
s: "AdLibris NO",
|
|
sc: "Online",
|
|
t: "adlibrisno",
|
|
u: "http://www.adlibris.com/no/searchresult.aspx?search=quickfirstpage&quickvalue={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.adlibris.com",
|
|
r: 0,
|
|
s: "AdLibris SE",
|
|
sc: "Online",
|
|
t: "adlibrisse",
|
|
u: "http://www.adlibris.com/se/searchresult.aspx?search=quickfirstpage&quickvalue={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.adme.ru",
|
|
r: 0,
|
|
s: "Adme.ru",
|
|
sc: "Misc",
|
|
t: "adme",
|
|
u: "https://www.adme.ru/search/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.adminwiki.fr",
|
|
r: 0,
|
|
s: "AdminWiki",
|
|
sc: "Sysadmin",
|
|
t: "adminwiki",
|
|
u: "https://www.adminwiki.fr/start?do=search&id={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "animedigitalnetwork.fr",
|
|
r: 0,
|
|
s: "AnimeDigitalNetwork",
|
|
sc: "Video",
|
|
t: "adn",
|
|
u: "http://animedigitalnetwork.fr/video#search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.adobe.com",
|
|
r: 0,
|
|
s: "Adobe",
|
|
sc: "Companies",
|
|
t: "adobe",
|
|
u: "http://www.adobe.com/cfusion/search/index.cfm?loc=en_us&term={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "docs.ansible.com",
|
|
r: 6,
|
|
s: "Ansible Docs",
|
|
sc: "Sysadmin",
|
|
t: "adoc",
|
|
u: "https://docs.ansible.com/ansible/latest/search.html?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "ancardia.wikia.com",
|
|
r: 0,
|
|
s: "ADOM Wiki",
|
|
sc: "Games (specific)",
|
|
t: "adom",
|
|
u: "http://ancardia.wikia.com/wiki/Special:Search?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.adorama.com",
|
|
r: 0,
|
|
s: "Adorama",
|
|
sc: "Online",
|
|
t: "ador",
|
|
u: "https://www.adorama.com/l/?searchinfo={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "adrenaline.uol.com.br",
|
|
r: 4,
|
|
s: "Adrenaline",
|
|
sc: "Blogs",
|
|
t: "adr",
|
|
u: "https://adrenaline.uol.com.br/site/pesquisa/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "adsabs.harvard.edu",
|
|
r: 0,
|
|
s: "SAO/NASA Astrophysics Data System",
|
|
sc: "Reference (science)",
|
|
t: "adsabs",
|
|
u: "http://adsabs.harvard.edu//cgi-bin/basic_connect?qsearch={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "ui.adsabs.harvard.edu",
|
|
r: 142,
|
|
s: "ADS bumblebee",
|
|
sc: "Academic",
|
|
t: "ads",
|
|
u: "https://ui.adsabs.harvard.edu/#search/q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "ui.adsabs.harvard.edu",
|
|
r: 0,
|
|
s: "Nasa ADS Beta",
|
|
sc: "Academic",
|
|
t: "adsbeta",
|
|
u: "https://ui.adsabs.harvard.edu/#search/q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "forums.autodesk.com",
|
|
r: 0,
|
|
s: "Autodesk Community",
|
|
sc: "Forum",
|
|
t: "adsk",
|
|
u: "http://forums.autodesk.com/t5/forums/searchpage/tab/message?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "labs.adsabs.harvard.edu",
|
|
r: 0,
|
|
s: "NASA ADS Labs",
|
|
sc: "Academic",
|
|
t: "adslabs",
|
|
u: "http://labs.adsabs.harvard.edu/ui/cgi-bin/topicSearch?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.adsrsounds.com",
|
|
r: 0,
|
|
s: "ADSR Sounds",
|
|
sc: "Music",
|
|
t: "adsr",
|
|
u: "https://www.adsrsounds.com/?src={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "adsabs.harvard.edu",
|
|
r: 0,
|
|
s: "NASA ADS Bibliographical reference search",
|
|
sc: "Academic",
|
|
t: "adsref",
|
|
u: "http://adsabs.harvard.edu/cgi-bin/nph-abs_connect?db_key=ALL&bibcode={{{s}}} ",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "careers.adtalem.com",
|
|
r: 0,
|
|
s: "Adtalem Careers",
|
|
sc: "Jobs",
|
|
t: "adtalem",
|
|
u: "https://careers.adtalem.com/us/en/search-results?keywords={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "duckduckgo.com",
|
|
r: 0,
|
|
s: "Adventure Rider",
|
|
sc: "Forum",
|
|
t: "adv",
|
|
u: "https://duckduckgo.com/?q=site%3Aadvrider.com+{{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.adverts.ie",
|
|
r: 0,
|
|
s: "Adverts.ie",
|
|
sc: "Online (intl)",
|
|
t: "adverts",
|
|
u: "http://www.adverts.ie/for-sale/q_{{{s}}}/",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "uk.advfn.com",
|
|
r: 0,
|
|
s: "ADVFN UK",
|
|
sc: "Tools",
|
|
t: "advfn",
|
|
u: "http://uk.advfn.com/p.php?pid=qkquote&symbol={{{s}}} ",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "advancedgta.com",
|
|
r: 0,
|
|
s: "Advanced GTA",
|
|
sc: "Downloads",
|
|
t: "advgta",
|
|
u: "https://advancedgta.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.audeze.com",
|
|
r: 0,
|
|
s: "Audeze",
|
|
sc: "Companies",
|
|
t: "adz",
|
|
u: "https://www.audeze.com/search?q={{{s}}}*",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.adzuna.co.uk",
|
|
r: 0,
|
|
s: "Adzuna",
|
|
sc: "Jobs",
|
|
t: "adzuna",
|
|
u: "https://www.adzuna.co.uk/jobs/search?q={{{s}}} ",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.aliexpress.com",
|
|
r: 502,
|
|
s: "aliexpress.com",
|
|
sc: "Online (marketplace)",
|
|
t: "ae",
|
|
u: "https://www.aliexpress.com/wholesale?SearchText={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "austria-forum.org",
|
|
r: 0,
|
|
s: "Austria Forum",
|
|
sc: "Reference",
|
|
t: "aeiou",
|
|
u: "https://austria-forum.org/Search.jsp?category=Austria-Forum&sname=name%2Csuchbegriff&query={{{s}}}+&searchType=default&useShortcuts=y&useSynonyms=n&doFuzzy=y&minResults=15",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.aemet.es",
|
|
r: 39,
|
|
s: "AEMET",
|
|
sc: "Weather",
|
|
t: "aemet",
|
|
u: "http://www.aemet.es/es/buscador?modo=and&orden=n&tipo=sta&str={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.ae.com",
|
|
r: 0,
|
|
s: "American Eagle Outfitters",
|
|
sc: "Online",
|
|
t: "aeo",
|
|
u: "https://www.ae.com/search/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "ae7q.com",
|
|
r: 0,
|
|
s: "AE7Q Amateur Extra Query Tools",
|
|
sc: "Tools",
|
|
t: "aeq",
|
|
u: "http://ae7q.com/query/data/CallHistory.php?CALL={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "duckduckgo.com",
|
|
r: 0,
|
|
s: "aeris - imirhil.fr",
|
|
sc: "Blogs",
|
|
t: "aeris",
|
|
u: "https://duckduckgo.com/?q=site%3Aimirhil.fr+{{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.aerobis.com",
|
|
r: 0,
|
|
s: "aerobis fitness",
|
|
sc: "Online",
|
|
t: "aerobis",
|
|
u: "https://www.aerobis.com/en/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.es",
|
|
r: 14,
|
|
s: "Amazon ES",
|
|
sc: "Online (marketplace)",
|
|
t: "a.es",
|
|
u: "https://www.amazon.es/s?k={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.es",
|
|
r: 929,
|
|
s: "Amazon.es",
|
|
sc: "Online (intl)",
|
|
t: "aes",
|
|
u: "https://www.amazon.es/s?k={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.acronymfinder.com",
|
|
r: 40,
|
|
s: "Acronym Finder",
|
|
sc: "Reference (words)",
|
|
t: "af",
|
|
u: "http://www.acronymfinder.com/{{{s}}}.html",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.arsenal.com",
|
|
r: 0,
|
|
s: "Arsenal",
|
|
sc: "Sports",
|
|
t: "afc",
|
|
u: "https://www.arsenal.com/search?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.afcindustries.com",
|
|
r: 0,
|
|
s: "AFC Industries",
|
|
sc: "Online",
|
|
t: "afcind",
|
|
u: "https://www.afcindustries.com/products/search.aspx?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "androidfilehost.com",
|
|
r: 0,
|
|
s: "Android File Host",
|
|
sc: "Downloads",
|
|
t: "afh",
|
|
u: "https://androidfilehost.com/?w=search&s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "aalto.finna.fi",
|
|
r: 0,
|
|
s: "aalto.finna.fi",
|
|
sc: "Academic",
|
|
t: "afinna",
|
|
u: "https://aalto.finna.fi/Search/Results?lookfor={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "learn.adafruit.com",
|
|
r: 0,
|
|
s: "Adafruit Learn",
|
|
sc: "Design",
|
|
t: "afl",
|
|
u: "https://learn.adafruit.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.afpforum.com",
|
|
r: 0,
|
|
s: "AFP",
|
|
sc: "Images",
|
|
t: "afp",
|
|
u: "http://www.afpforum.com/AFPForum/Search/Results.aspx?pn=1&smd=8&fst={{{s}}}&fto=7&mui=3&t=2",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.afpforum.com",
|
|
r: 0,
|
|
s: "AFP",
|
|
sc: "Images",
|
|
t: "afpf",
|
|
u: "http://www.afpforum.com/AFPForum/Search/Results.aspx?pn=1&smd=8&fst={{{s}}}&fto=7&mui=3&t=2",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "afpl.ent.sirsi.net",
|
|
r: 0,
|
|
s: "Atlanta-Fulton Public Library System",
|
|
sc: "Search",
|
|
t: "afpls",
|
|
u: "http://afpl.ent.sirsi.net/client/default/search/results?qu={{{s}}}&te=ILS",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.e-publishing.af.mil",
|
|
r: 0,
|
|
s: "U.S. Air Force Forms and Publications",
|
|
sc: "Government",
|
|
t: "afpubs",
|
|
u: "http://www.e-publishing.af.mil/index.asp?txtSearchWord={{{s}}}&rdoFormPub=rdoPub",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.fr",
|
|
r: 1756,
|
|
s: "Amazon.fr",
|
|
sc: "Online (intl)",
|
|
t: "afr",
|
|
u: "https://www.amazon.fr/s?k={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.adafruit.com",
|
|
r: 5,
|
|
s: "Adafruit",
|
|
sc: "Tech",
|
|
t: "aft",
|
|
u: "https://www.adafruit.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "track.aftership.com",
|
|
r: 5,
|
|
s: "Aftership",
|
|
sc: "Tracking",
|
|
t: "aftership",
|
|
u: "https://track.aftership.com/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "aftvhacks.de",
|
|
r: 0,
|
|
s: "aftvhacks",
|
|
sc: "Blogs",
|
|
t: "aftvhacks",
|
|
u: "https://aftvhacks.de/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "af.wikipedia.org",
|
|
r: 4,
|
|
s: "Afrikaans Wikipedia",
|
|
sc: "Learning",
|
|
t: "afwiki",
|
|
u: "https://af.wikipedia.org/w/index.php?search={{{s}}}&title=Spesiaal%3ASoek&go=Wys",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.agame.com",
|
|
r: 0,
|
|
s: "Agame",
|
|
sc: "Games (general)",
|
|
t: "agame",
|
|
u: "http://www.agame.com/search?searchTerm={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.anaitgames.com",
|
|
r: 0,
|
|
s: "AnaitGames",
|
|
sc: "Forum",
|
|
t: "agames",
|
|
u: "https://www.anaitgames.com/buscador.php?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.android.gs",
|
|
r: 12,
|
|
s: "Android Geeks",
|
|
sc: "Blogs",
|
|
t: "ag",
|
|
u: "http://www.android.gs/?s=&q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "duckduckgo.com",
|
|
r: 0,
|
|
s: "The Annotated Grateful Dead Lyrics",
|
|
sc: "Music (Lyrics)",
|
|
t: "agdl",
|
|
u: "http://duckduckgo.com/?q={{{s}}}+site:artsites.ucsc.edu/GDead/agdl/+!",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.de",
|
|
r: 24,
|
|
s: "Amazon Germany",
|
|
sc: "Online",
|
|
t: "age",
|
|
u: "https://www.amazon.de/s?k={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.de",
|
|
r: 8,
|
|
s: "Amazon Germany",
|
|
sc: "Online",
|
|
t: "ager",
|
|
u: "https://www.amazon.de/s?k={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "android-review.googlesource.com",
|
|
r: 0,
|
|
s: "Android Code Review (Gerrit)",
|
|
sc: "Programming",
|
|
t: "agerrit",
|
|
u: "https://android-review.googlesource.com/q/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.arturogoga.com",
|
|
r: 0,
|
|
s: "arturogoga",
|
|
sc: "Blogs (intl)",
|
|
t: "agoga",
|
|
u: "https://www.arturogoga.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "agora.gg",
|
|
r: 0,
|
|
s: "http://agora.gg",
|
|
sc: "Reference",
|
|
t: "agora",
|
|
u: "http://agora.gg/search/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "agora.co.il",
|
|
r: 0,
|
|
s: "Agora.co.il",
|
|
sc: "Online (marketplace)",
|
|
t: "agorail",
|
|
u: "https://agora.co.il/toGet.asp?iseek={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.agrireseau.net",
|
|
r: 0,
|
|
s: "Agri-R\u00e9seau",
|
|
sc: "Learning",
|
|
t: "agri",
|
|
u: "https://www.agrireseau.net/documents?r={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "agricola.nal.usda.gov",
|
|
r: 0,
|
|
s: "AGRICOLA",
|
|
sc: "Government",
|
|
t: "agricola",
|
|
u: "https://agricola.nal.usda.gov/vwebv/search?searchArg={{{s}}}&searchCode=GKEY%5E&setLimit=1&recCount=10&searchType=1&page.search.search.button=Search",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "adventuregamers.com",
|
|
r: 0,
|
|
s: "Adventure Gamers",
|
|
sc: "Games (general)",
|
|
t: "ags",
|
|
u: "https://adventuregamers.com/games/search?keywords={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.ah.nl",
|
|
r: 32,
|
|
s: "Albert Heijn",
|
|
sc: "Online",
|
|
t: "ah",
|
|
u: "https://www.ah.nl/zoeken?rq={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "ahdictionary.com",
|
|
r: 43,
|
|
s: "american heritage dictionary",
|
|
sc: "Reference (words)",
|
|
t: "ahd",
|
|
u: "https://ahdictionary.com/word/search.html?q={{{s}}}&submit.x=0&submit.y=0",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "arkhamdb.com",
|
|
r: 19,
|
|
s: "ArkhamDB",
|
|
sc: "Games (specific)",
|
|
t: "ahdb",
|
|
u: "https://arkhamdb.com/find?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.autohotkey.com",
|
|
r: 4,
|
|
s: "AutoHotkey",
|
|
sc: "Programming",
|
|
t: "ahk",
|
|
u: "http://www.autohotkey.com/search/search.php?site=4&refine=0&template_demo=phpdig.html&result_page=search.php&search=Go+...&limite=100&option=start&path=docs/&query_string={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "ahmetcadirci.com.tr",
|
|
r: 0,
|
|
s: "Ahmet \u00c7ad\u0131rc\u0131",
|
|
sc: "Blogs",
|
|
t: "ahmetcadirci",
|
|
u: "https://ahmetcadirci.com.tr/search/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "ahmia.fi",
|
|
r: 0,
|
|
s: "Ahmia.fi",
|
|
sc: "Domains",
|
|
t: "ahmia",
|
|
u: "https://ahmia.fi/search/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "ahrefs.com",
|
|
r: 0,
|
|
s: "ahrefs",
|
|
sc: "Domains",
|
|
t: "ahrefs",
|
|
u: "https://ahrefs.com/site-explorer/overview/v2/subdomains/recent?target={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.arkhamhorrorwiki.com",
|
|
r: 0,
|
|
s: "Arkham Horror Wiki",
|
|
sc: "Games (specific)",
|
|
t: "ahw",
|
|
u: "http://www.arkhamhorrorwiki.com/wiki/index.php?title=Special%3ASearch&search={{{s}}}&go=Go",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.duckduckgo.com",
|
|
r: 152,
|
|
s: "Duck.ai",
|
|
sc: "Reference",
|
|
t: "aichat",
|
|
u: "https://www.duckduckgo.com/?q={{{s}}}&ia=chat&bang=true ",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.aidaily.co.uk",
|
|
r: 0,
|
|
s: "AIDaily",
|
|
sc: "Blogs",
|
|
t: "aidaily",
|
|
u: "https://www.aidaily.co.uk/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "aidenpromotions.com",
|
|
r: 0,
|
|
s: "Aiden Promtions",
|
|
sc: "International",
|
|
t: "aiden",
|
|
u: "https://aidenpromotions.com/blog/?s=phones {{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.aifittings.com",
|
|
r: 0,
|
|
s: "Arlington Industries",
|
|
sc: "Reference",
|
|
t: "aifit",
|
|
u: "http://www.aifittings.com/searchResults?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "aikatsu-friends.wikia.com",
|
|
r: 0,
|
|
s: "Aikatsu Friends Wikia",
|
|
sc: "Games (general)",
|
|
t: "aifriends",
|
|
u: "http://aikatsu-friends.wikia.com/wiki/Special:Search?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.aihitdata.com",
|
|
r: 0,
|
|
s: "aihit",
|
|
sc: "Search",
|
|
t: "aihit",
|
|
u: "https://www.aihitdata.com/search/companies?i={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "ai-jobs.net",
|
|
r: 0,
|
|
s: "ai-jobs.net",
|
|
sc: "Jobs",
|
|
t: "aijobs",
|
|
u: "https://ai-jobs.net/?search_keywords={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "aikatsu.wikia.com",
|
|
r: 0,
|
|
s: "Aikatsu Wikia",
|
|
sc: "Games (general)",
|
|
t: "aikatsu",
|
|
u: "http://aikatsu.wikia.com/wiki/Special:Search?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.in",
|
|
r: 93,
|
|
s: "Amazon India",
|
|
sc: "Online",
|
|
t: "a.in",
|
|
u: "https://www.amazon.in/s?k={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.in",
|
|
r: 1237,
|
|
s: "Amazon India",
|
|
sc: "Online (intl)",
|
|
t: "ain",
|
|
u: "https://www.amazon.in/s?k={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "aion.wikia.com",
|
|
r: 0,
|
|
s: "Aion Wiki",
|
|
sc: "Games (specific)",
|
|
t: "aion",
|
|
u: "http://aion.wikia.com/wiki/index.php?search={{{s}}}&fulltext=0",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "scitation.aip.org",
|
|
r: 0,
|
|
s: "aip.org",
|
|
sc: "Academic",
|
|
t: "aip",
|
|
u: "http://scitation.aip.org/search?value1={{{s}}}&option1=fulltext",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.air1.com",
|
|
r: 0,
|
|
s: "Air1",
|
|
sc: "Music",
|
|
t: "air1",
|
|
u: "http://www.air1.com/search.aspx?searchterm={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.airbnb.com",
|
|
r: 20,
|
|
s: "airbnb",
|
|
sc: "Online",
|
|
t: "airbnb",
|
|
u: "https://www.airbnb.com/s/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "airforums.com",
|
|
r: 0,
|
|
s: "Airforums",
|
|
sc: "Forum",
|
|
t: "airforums",
|
|
u: "http://airforums.com/?={{{s}}}:",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.airframes.org",
|
|
r: 0,
|
|
s: "Aircraft Registration Database Lookup",
|
|
sc: "Reference",
|
|
t: "airframes",
|
|
u: "http://www.airframes.org/reg/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.airlinehyd.com",
|
|
r: 0,
|
|
s: "Airline Hydraulics",
|
|
sc: "Online",
|
|
t: "airlinehyd",
|
|
u: "https://www.airlinehyd.com/Results.aspx?srh={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.airliners.net",
|
|
r: 0,
|
|
s: "Airliners.net",
|
|
sc: "Images",
|
|
t: "airliners",
|
|
u: "http://www.airliners.net/search?keywords={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "air.mozilla.org",
|
|
r: 0,
|
|
s: "Air Mozilla",
|
|
sc: "Video",
|
|
t: "airmo",
|
|
u: "https://air.mozilla.org/search/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "airnav.com",
|
|
r: 19,
|
|
s: "AirNav",
|
|
sc: "Tools",
|
|
t: "airn",
|
|
u: "https://airnav.com/airport/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "airnav.com",
|
|
r: 0,
|
|
s: "Airnav",
|
|
sc: "Tools",
|
|
t: "airnav",
|
|
u: "http://airnav.com/airport/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.goodtobreathein.com",
|
|
r: 0,
|
|
s: "Good To Breathe In",
|
|
sc: "Health",
|
|
t: "airquality",
|
|
u: "https://www.goodtobreathein.com/?zipcode={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.airsoftdb.com",
|
|
r: 0,
|
|
s: "Airsoftdb",
|
|
sc: "Search",
|
|
t: "airsoftdb",
|
|
u: "https://www.airsoftdb.com/search/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "archive.is",
|
|
r: 756,
|
|
s: "archive.is",
|
|
sc: "Tools (URLs)",
|
|
t: "ais",
|
|
u: "http://archive.is/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.aish.com",
|
|
r: 0,
|
|
s: "Aish",
|
|
sc: "Reference (religion)",
|
|
t: "aish",
|
|
u: "http://www.aish.com/search/?keywords={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "aikatsustars.wikia.com",
|
|
r: 0,
|
|
s: "Aikatsu Stars Wikia",
|
|
sc: "Games (general)",
|
|
t: "aistars",
|
|
u: "http://aikatsustars.wikia.com/wiki/Special:Search?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.it",
|
|
r: 855,
|
|
s: "Amazon.it",
|
|
sc: "Online (intl)",
|
|
t: "ait",
|
|
u: "https://www.amazon.it/s?k={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.it",
|
|
r: 15,
|
|
s: "Amazon IT",
|
|
sc: "Online",
|
|
t: "a.it",
|
|
u: "https://www.amazon.it/s?k={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "aitopics.org",
|
|
r: 0,
|
|
s: "AITopics",
|
|
sc: "Reference",
|
|
t: "aitopics",
|
|
u: "https://aitopics.org/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.duckduckgo.com",
|
|
r: 8351,
|
|
s: "Duck.ai",
|
|
sc: "Reference",
|
|
t: "ddgai",
|
|
u: "https://www.duckduckgo.com/?q={{{s}}}&ia=chat&bang=true ",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "america.aljazeera.com",
|
|
r: 17,
|
|
s: "Al Jazeera America",
|
|
sc: "International",
|
|
t: "aja",
|
|
u: "http://america.aljazeera.com/search.html?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.alljapaneseallthetime.com",
|
|
r: 0,
|
|
s: "All Japanese All the Time",
|
|
sc: "Blogs",
|
|
t: "ajatt",
|
|
u: "http://www.alljapaneseallthetime.com/blog/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.achajogobarato.com.br",
|
|
r: 0,
|
|
s: "Acha Jogo Barato",
|
|
sc: "Online",
|
|
t: "ajb",
|
|
u: "http://www.achajogobarato.com.br/search.html?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.aljazeera.com",
|
|
r: 18,
|
|
s: "Al Jazeera (English)",
|
|
sc: "International",
|
|
t: "aje",
|
|
u: "http://www.aljazeera.com/Search/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.co.jp",
|
|
r: 598,
|
|
s: "http://amazon.co.jp",
|
|
sc: "Online (marketplace)",
|
|
t: "aj",
|
|
u: "https://www.amazon.co.jp/s?k={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.co.jp",
|
|
r: 0,
|
|
s: "Amazon.co.jp",
|
|
sc: "Online",
|
|
t: "ajl",
|
|
u: "https://www.amazon.co.jp/s?k={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.co.jp",
|
|
r: 492,
|
|
s: "Amazon.co.jp",
|
|
sc: "Online (intl)",
|
|
t: "ajp",
|
|
u: "https://www.amazon.co.jp/s?k={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.accountkiller.com",
|
|
r: 4,
|
|
s: "Account Killer",
|
|
sc: "Tools",
|
|
t: "ak",
|
|
u: "https://www.accountkiller.com/en/delete-{{{s}}}-account",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.akakce.com",
|
|
r: 49,
|
|
s: "Akak\u00e7e",
|
|
sc: "Online (deals)",
|
|
t: "akakce",
|
|
u: "http://www.akakce.com/arama/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.akc.org",
|
|
r: 0,
|
|
s: "American Kennel Club",
|
|
sc: "Reference",
|
|
t: "akc",
|
|
u: "https://www.akc.org/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "akizukidenshi.com",
|
|
r: 30,
|
|
s: "akizukidenshi",
|
|
sc: "Online (marketplace)",
|
|
t: "akiduki",
|
|
u: "http://akizukidenshi.com/catalog/goods/search.aspx?keyword= {{{s}}}&goods=&number=&name=&min_price=&max_price=&search.x=0&search.y=0",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.allkeyshop.com",
|
|
r: 69,
|
|
s: "AllKeyShop",
|
|
sc: "Online (deals)",
|
|
t: "aks",
|
|
u: "http://www.allkeyshop.com/blog/catalogue/search-{{{s}}}/",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.aktuality.sk",
|
|
r: 0,
|
|
s: "Aktuality",
|
|
sc: "Newspaper",
|
|
t: "aktuality",
|
|
u: "https://www.aktuality.sk/vyhladavanie/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.aktualne.cz",
|
|
r: 0,
|
|
s: "Aktu\u00e1ln\u011b.cz",
|
|
sc: "Newspaper (intl)",
|
|
t: "aktualne",
|
|
u: "https://www.aktualne.cz/hledani/?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.alamaula.com",
|
|
r: 0,
|
|
s: "alaMaula",
|
|
sc: "Online (intl)",
|
|
t: "ala",
|
|
u: "http://www.alamaula.com/q/{{{s}}}/S0",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "aladi.diba.cat",
|
|
r: 0,
|
|
s: "Cat\u00e0leg de la Xarxa de Biblioteques Municipals de la Diputaci\u00f3 de Barcelona",
|
|
sc: "Search",
|
|
t: "aladi",
|
|
u: "https://aladi.diba.cat/search*cat/-{{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.aladin.co.kr",
|
|
r: 10,
|
|
s: "aladin",
|
|
sc: "Online",
|
|
t: "aladin",
|
|
u: "http://www.aladin.co.kr/search/wsearchresult.aspx?SearchTarget=All&SearchWord={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "anilist.co",
|
|
r: 471,
|
|
s: "AniList",
|
|
sc: "TV",
|
|
t: "al",
|
|
u: "https://anilist.co/search/anime?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "archlinuxarm.org",
|
|
r: 0,
|
|
s: "Arch Linux ARM Packages",
|
|
sc: "Sysadmin (Arch)",
|
|
t: "alarmpkg",
|
|
u: "https://archlinuxarm.org/packages/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "alatest.de",
|
|
r: 0,
|
|
s: "alaTest",
|
|
sc: "Tech",
|
|
t: "alatest",
|
|
u: "http://alatest.de/searchaction.html?keyword1={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "bie.ala.org.au",
|
|
r: 0,
|
|
s: "Atlas of Living Australia",
|
|
sc: "Academic (biology)",
|
|
t: "alaus",
|
|
u: "https://bie.ala.org.au/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.alibaba.com",
|
|
r: 0,
|
|
s: "alibaba",
|
|
sc: "Online (intl)",
|
|
t: "alb",
|
|
u: "https://www.alibaba.com/trade/search?fsb=y&IndexArea=product_en&CatId=&SearchText={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.alberta.ca",
|
|
r: 0,
|
|
s: "Government of Alberta",
|
|
sc: "Government",
|
|
t: "alberta",
|
|
u: "https://www.alberta.ca/search-results.aspx?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.ah.nl",
|
|
r: 0,
|
|
s: "Albert Hein",
|
|
sc: "Online (marketplace)",
|
|
t: "alberthein",
|
|
u: "http://www.ah.nl/zoeken?rq={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.albumartexchange.com",
|
|
r: 0,
|
|
s: "Album Art Exchange",
|
|
sc: "Images",
|
|
t: "albex",
|
|
u: "http://www.albumartexchange.com/covers.php?q={{{s}}} ",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.allmusic.com",
|
|
r: 0,
|
|
s: "AllMusic Albums",
|
|
sc: "Misc",
|
|
t: "album",
|
|
u: "http://www.allmusic.com/search/albums/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.albumart.org",
|
|
r: 0,
|
|
s: "Albumart (Music)",
|
|
sc: "Music",
|
|
t: "albumartcd",
|
|
u: "http://www.albumart.org/index.php?skey={{{s}}}&itempage=1&newsearch=1&searchindex=Music",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.albumart.org",
|
|
r: 0,
|
|
s: "Albumart (DVD)",
|
|
sc: "Music",
|
|
t: "albumartdvd",
|
|
u: "http://www.albumart.org/index.php?skey={{{s}}}&itempage=1&newsearch=1&searchindex=DVD",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "bendodson.com",
|
|
r: 20,
|
|
s: "iTunes Album Artwork Finder",
|
|
sc: "Images",
|
|
t: "albumart",
|
|
u: "https://bendodson.com/projects/itunes-artwork-finder/index.html?entity=album&country=us&query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.allmusic.com",
|
|
r: 0,
|
|
s: "AllMusic Albums",
|
|
sc: "Misc",
|
|
t: "albums",
|
|
u: "http://www.allmusic.com/search/albums/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "eow.alc.co.jp",
|
|
r: 76,
|
|
s: "Alc Japanese English Dictionary",
|
|
sc: "Reference (words intl)",
|
|
t: "alc",
|
|
u: "http://eow.alc.co.jp/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "biznesalert.pl",
|
|
r: 0,
|
|
s: "BiznesAlert",
|
|
sc: "Companies",
|
|
t: "alert",
|
|
u: "http://biznesalert.pl/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.alesund.kommune.no",
|
|
r: 0,
|
|
s: "alesund kommune",
|
|
sc: "Social",
|
|
t: "alesund",
|
|
u: "http://www.alesund.kommune.no/component/finder/search?q={{{s}}}&Itemid=406",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "alexa.com",
|
|
r: 0,
|
|
s: "Alexa",
|
|
sc: "Companies",
|
|
t: "alexa",
|
|
u: "http://alexa.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.alexalt.es",
|
|
r: 0,
|
|
s: "Alexalt",
|
|
sc: "Blogs",
|
|
t: "alexalt",
|
|
u: "https://www.alexalt.es/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.alexa.com",
|
|
r: 0,
|
|
s: "alexa",
|
|
sc: "Startups",
|
|
t: "alexasi",
|
|
u: "http://www.alexa.com/siteinfo/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "alexion.nl",
|
|
r: 0,
|
|
s: "Alexion CRM software",
|
|
sc: "Downloads (software)",
|
|
t: "alexion",
|
|
u: "http://alexion.nl/?s={{{s}}}&post_type=faq",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.alexshoes.com.br",
|
|
r: 0,
|
|
s: "AlexShoes Cal\u00e7ados",
|
|
sc: "Online",
|
|
t: "alexshoes",
|
|
u: "http://www.alexshoes.com.br/buscacomfab.asp?chaves={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.alfinsight.com",
|
|
r: 0,
|
|
s: "ALF Insight",
|
|
sc: "Tools",
|
|
t: "alf",
|
|
u: "https://www.alfinsight.com/app/SearchResults?quickSearch={{{s}}} ",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.alfredapp.com",
|
|
r: 0,
|
|
s: "Alfred",
|
|
sc: "Programming",
|
|
t: "alfred",
|
|
u: "https://www.alfredapp.com/search/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.algomation.com",
|
|
r: 0,
|
|
s: "Algomation",
|
|
sc: "Programming",
|
|
t: "alg",
|
|
u: "http://www.algomation.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "algorithmia.com",
|
|
r: 0,
|
|
s: "Algorithmia",
|
|
sc: "Programming",
|
|
t: "algo",
|
|
u: "https://algorithmia.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.aliexpress.com",
|
|
r: 1487,
|
|
s: "Aliexpress",
|
|
sc: "Online",
|
|
t: "ali",
|
|
u: "https://www.aliexpress.com/wholesale?SearchText={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.alibaba.com",
|
|
r: 13,
|
|
s: "Alibaba",
|
|
sc: "Online (marketplace)",
|
|
t: "alibaba",
|
|
u: "http://www.alibaba.com/trade/search?SearchText={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "discover.elgar.govt.nz",
|
|
r: 0,
|
|
s: "Auckland Libraries",
|
|
sc: "Local",
|
|
t: "alib",
|
|
u: "https://discover.elgar.govt.nz/iii/encore/search/C__S{{{s}}}__Orightresult__U?lang=eng&suite=def",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.alibris.com",
|
|
r: 11,
|
|
s: "alibris",
|
|
sc: "Online",
|
|
t: "alibris",
|
|
u: "http://www.alibris.com/booksearch?keyword={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.abretelibro.com",
|
|
r: 0,
|
|
s: "\u00c1brete libro",
|
|
sc: "Forum",
|
|
t: "alibro",
|
|
u: "http://www.abretelibro.com/foro/search.php?keywords={{{s}}}&sf=titleonly",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.abretelibro.com",
|
|
r: 0,
|
|
s: "\u00c1brete libro",
|
|
sc: "Forum",
|
|
t: "alibros",
|
|
u: "http://www.abretelibro.com/foro/search.php?keywords={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "mail.alice.it",
|
|
r: 0,
|
|
s: "Alice Mail",
|
|
sc: "Tools",
|
|
t: "alicemail",
|
|
u: "https://mail.alice.it/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.aliexpress.com",
|
|
r: 8,
|
|
s: "Aliexpress",
|
|
sc: "Online (intl)",
|
|
t: "aliexp",
|
|
u: "http://www.aliexpress.com/wholesale?SearchText={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.aliexpress.com",
|
|
r: 382,
|
|
s: "Aliexpress",
|
|
sc: "Online (marketplace)",
|
|
t: "aliexpress",
|
|
u: "http://www.aliexpress.com/wholesale?SearchText={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "careers.alight.com",
|
|
r: 0,
|
|
s: "Alight",
|
|
sc: "Jobs",
|
|
t: "alight",
|
|
u: "https://careers.alight.com/search-results?keywords={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "m.aliexpress.com",
|
|
r: 0,
|
|
s: "AliExpress Mobile",
|
|
sc: "Online",
|
|
t: "alim",
|
|
u: "https://m.aliexpress.com/search.htm?keywords={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "alipaczka.pl",
|
|
r: 0,
|
|
s: "AliPaczka",
|
|
sc: "Tracking",
|
|
t: "alipaczka",
|
|
u: "https://alipaczka.pl/?track={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "aliseeks.com",
|
|
r: 0,
|
|
s: "Aliseeks",
|
|
sc: "Online (deals)",
|
|
t: "aliseeks",
|
|
u: "http://aliseeks.com/search?SearchText={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "english.aljazeera.net",
|
|
r: 0,
|
|
s: "Aljazeera English",
|
|
sc: "Aggregators",
|
|
t: "aljazeera",
|
|
u: "http://english.aljazeera.net/Services/Search/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.alko.fi",
|
|
r: 0,
|
|
s: "Alko",
|
|
sc: "Online",
|
|
t: "alko",
|
|
u: "https://www.alko.fi/INTERSHOP/web/WFS/Alko-OnlineShop-Site/fi_FI/-/EUR/ViewParametricSearchBySearchIndex-SimpleGenericSearch?SearchTerm={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.allabolag.se",
|
|
r: 6,
|
|
s: "Alla Bolag",
|
|
sc: "Tools",
|
|
t: "allabolag",
|
|
u: "https://www.allabolag.se/what/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.allaboutcircuits.com",
|
|
r: 0,
|
|
s: "allaboutcircuits",
|
|
sc: "Reference",
|
|
t: "allaboutcircuits",
|
|
u: "http://www.allaboutcircuits.com/scripts/search.html?cx=006978388026519765659%3Ahg719j5vhl8&cof=FORID%3A9&q={{{s}}}&sa=Find",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.allacronyms.com",
|
|
r: 0,
|
|
s: "All Acronyms",
|
|
sc: "Reference (words)",
|
|
t: "allacronyms",
|
|
u: "https://www.allacronyms.com/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "all-io.net",
|
|
r: 9,
|
|
s: "All in One",
|
|
sc: "Search",
|
|
t: "all",
|
|
u: "http://all-io.net/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "biblez.com",
|
|
r: 0,
|
|
s: "Online Parallel Bible",
|
|
sc: "Reference (religion)",
|
|
t: "allbibles",
|
|
u: "http://biblez.com/search.php?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.all.biz",
|
|
r: 0,
|
|
s: "AllBiz",
|
|
sc: "Online",
|
|
t: "allbiz",
|
|
u: "http://www.all.biz/search/goods/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "allegro.pl",
|
|
r: 367,
|
|
s: "Allegro",
|
|
sc: "Online (intl)",
|
|
t: "allegro",
|
|
u: "https://allegro.pl/listing?string={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.allelectronics.com",
|
|
r: 0,
|
|
s: "All Electronics",
|
|
sc: "Tech",
|
|
t: "allelec",
|
|
u: "http://www.allelectronics.com/index.php?page=seek&id%5Bm%5D=pattern&id%5Bq%5D={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.ah.nl",
|
|
r: 0,
|
|
s: "Allerhande",
|
|
sc: "Food",
|
|
t: "allerhande",
|
|
u: "https://www.ah.nl/allerhande/recepten-zoeken?Ntt={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.allerstorfer.at",
|
|
r: 0,
|
|
s: "Allerstorfer.at",
|
|
sc: "Sysadmin",
|
|
t: "allerstorfer",
|
|
u: "https://www.allerstorfer.at/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "en.allexperts.com",
|
|
r: 0,
|
|
s: "All Experts",
|
|
sc: "Search",
|
|
t: "allexperts",
|
|
u: "http://en.allexperts.com/sitesearch.htm?terms={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "alliancechampions.com",
|
|
r: 0,
|
|
s: "Alliance Champions Training Center",
|
|
sc: "Health",
|
|
t: "alliance",
|
|
u: "https://alliancechampions.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.alliedelec.com",
|
|
r: 0,
|
|
s: "Allied Electronics",
|
|
sc: "Tech",
|
|
t: "alliedelec",
|
|
u: "http://www.alliedelec.com/search/results.aspx?term={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "allmovie.com",
|
|
r: 8,
|
|
s: "AllMovie",
|
|
sc: "Movies",
|
|
t: "allmovie",
|
|
u: "http://allmovie.com/search/all/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.allmusic.com",
|
|
r: 0,
|
|
s: "All Music",
|
|
sc: "Music",
|
|
t: "allmus",
|
|
u: "https://www.allmusic.com/search/all/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.allmusic.com",
|
|
r: 173,
|
|
s: "AllMusic",
|
|
sc: "Misc",
|
|
t: "allmusic",
|
|
u: "http://www.allmusic.com/search/all/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.allocine.fr",
|
|
r: 9,
|
|
s: "Allocin\u00e9",
|
|
sc: "Movies",
|
|
t: "allo",
|
|
u: "http://www.allocine.fr/recherche/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.allocine.fr",
|
|
r: 30,
|
|
s: "Allocine.com",
|
|
sc: "Movies",
|
|
t: "allocine",
|
|
u: "http://www.allocine.fr/recherche/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.allocine.fr",
|
|
r: 0,
|
|
s: "Allocin\u00e9",
|
|
sc: "Movies",
|
|
t: "allocin\u00e9",
|
|
u: "http://www.allocine.fr/recherche/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.allposters.com",
|
|
r: 0,
|
|
s: "All Posters",
|
|
sc: "Online",
|
|
t: "allposters",
|
|
u: "http://www.allposters.com/gallery.asp?txtSearch={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "allrecipes.com",
|
|
r: 3,
|
|
s: "Allrecipes",
|
|
sc: "Food",
|
|
t: "allrecipes",
|
|
u: "http://allrecipes.com/search/results/?wt={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.allsides.com",
|
|
r: 0,
|
|
s: "AllSides",
|
|
sc: "Online",
|
|
t: "allsides",
|
|
u: "https://www.allsides.com/allsides-search-results?search_api_views_fulltext={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "allsongs.tv",
|
|
r: 0,
|
|
s: "AllSongs",
|
|
sc: "Music",
|
|
t: "allsongs",
|
|
u: "http://allsongs.tv/search/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.almaany.com",
|
|
r: 0,
|
|
s: "almaany",
|
|
sc: "Reference (words)",
|
|
t: "almaanyar",
|
|
u: "http://www.almaany.com/ar/dict/ar-ar/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.almaany.com",
|
|
r: 0,
|
|
s: "Almaany",
|
|
sc: "Reference",
|
|
t: "almaanyen",
|
|
u: "http://www.almaany.com/ar/dict/ar-en/{{{s}}}/",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.almaany.com",
|
|
r: 0,
|
|
s: "Almaany persian",
|
|
sc: "Reference (words)",
|
|
t: "almaanyfa",
|
|
u: "https://www.almaany.com/ar/dict/ar-fa/{{{s}}}/",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.almanac.com",
|
|
r: 0,
|
|
s: "The Old Farmer's Almanac",
|
|
sc: "Online",
|
|
t: "almanac",
|
|
u: "http://www.almanac.com/store/product-search?keys={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.almedina.net",
|
|
r: 0,
|
|
s: "Livraria Almedina",
|
|
sc: "Online (marketplace)",
|
|
t: "almedina",
|
|
u: "https://www.almedina.net/search.php?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.alnatura.de",
|
|
r: 0,
|
|
s: "Alnatura(DE)",
|
|
sc: "Online",
|
|
t: "alnaturade",
|
|
u: "http://www.alnatura.de/de-de/suche?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.alo.bg",
|
|
r: 0,
|
|
s: "alo.bg",
|
|
sc: "Online (marketplace)",
|
|
t: "alobg",
|
|
u: "https://www.alo.bg/searchq/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.archlinux.org",
|
|
r: 309,
|
|
s: "Arch Linux Packages",
|
|
sc: "Sysadmin (Arch)",
|
|
t: "alp",
|
|
u: "https://www.archlinux.org/packages/?sort=&q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.wolframalpha.com",
|
|
r: 113,
|
|
s: "Wolfram|Alpha",
|
|
sc: "Search",
|
|
t: "alpha",
|
|
u: "http://www.wolframalpha.com/input/?i={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "pkgs.alpinelinux.org",
|
|
r: 145,
|
|
s: "Alpine packages",
|
|
sc: "Sysadmin (packages)",
|
|
t: "alpine",
|
|
u: "http://pkgs.alpinelinux.org/packages?name={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "alternativeto.net",
|
|
r: 822,
|
|
s: "alternativeTo",
|
|
sc: "Tools",
|
|
t: "alt",
|
|
u: "http://alternativeto.net/SearchResult.aspx?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.alternate.be",
|
|
r: 0,
|
|
s: "Alternate Belgi\u00eb",
|
|
sc: "Tech",
|
|
t: "altbe",
|
|
u: "https://www.alternate.be/html/search.html?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.alternate.de",
|
|
r: 7,
|
|
s: "Alternate",
|
|
sc: "Online (deals)",
|
|
t: "alternate",
|
|
u: "http://www.alternate.de/html/search.html?searchCriteria={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.alternate.nl",
|
|
r: 0,
|
|
s: "Alternate Nederland",
|
|
sc: "Tech",
|
|
t: "alternatenl",
|
|
u: "https://www.alternate.nl/html/search.html?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "alternativeto.net",
|
|
r: 74,
|
|
s: "AlternativeTo.net",
|
|
sc: "Downloads (software)",
|
|
t: "alternative",
|
|
u: "http://alternativeto.net/searchresult.aspx?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "alternativeto.net",
|
|
r: 362,
|
|
s: "alternativeto.net",
|
|
sc: "Domains",
|
|
t: "alternativeto",
|
|
u: "http://alternativeto.net/browse/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.alternet.org",
|
|
r: 0,
|
|
s: "Alternet",
|
|
sc: "Magazine",
|
|
t: "alternet",
|
|
u: "https://www.alternet.org/search/site/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "altex.ro",
|
|
r: 0,
|
|
s: "Altex",
|
|
sc: "Online",
|
|
t: "altex",
|
|
u: "https://altex.ro/cauta/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "techdocs.altium.com",
|
|
r: 0,
|
|
s: "Altium",
|
|
sc: "Design",
|
|
t: "altium",
|
|
u: "http://techdocs.altium.com/search/wikinode/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "alternativeto.net",
|
|
r: 308,
|
|
s: "Alternative To",
|
|
sc: "Downloads (software)",
|
|
t: "alto",
|
|
u: "http://alternativeto.net/browse/search?q={{{s}}} ",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.altroconsumo.it",
|
|
r: 0,
|
|
s: "Altroconsumo",
|
|
sc: "Magazine",
|
|
t: "altro",
|
|
u: "http://www.altroconsumo.it/Serp/ShowResults?keyword={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "altru.greatjob.net",
|
|
r: 0,
|
|
s: "Altru Careers",
|
|
sc: "Jobs",
|
|
t: "altru",
|
|
u: "https://altru.greatjob.net/search-results?keywords={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "alternativeto.net",
|
|
r: 81,
|
|
s: "alternativeTo",
|
|
sc: "Search",
|
|
t: "altto",
|
|
u: "http://alternativeto.net/browse/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "alugha.com",
|
|
r: 0,
|
|
s: "alugha",
|
|
sc: "Video",
|
|
t: "alugha",
|
|
u: "https://alugha.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "alvanista.com",
|
|
r: 0,
|
|
s: "Alvanista",
|
|
sc: "Games (general)",
|
|
t: "alvanista",
|
|
u: "http://alvanista.com/search?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "wiki.alpinelinux.org",
|
|
r: 16,
|
|
s: "alpine linux wiki",
|
|
sc: "Sysadmin",
|
|
t: "alw",
|
|
u: "https://wiki.alpinelinux.org/w/index.php?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.alza.cz",
|
|
r: 28,
|
|
s: "Alza.cz",
|
|
sc: "Online",
|
|
t: "alza",
|
|
u: "https://www.alza.cz/search.htm?exps={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.de",
|
|
r: 414,
|
|
s: "Amazon Deutschland",
|
|
sc: "Online",
|
|
t: "ama",
|
|
u: "https://www.amazon.de/s?k={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.amazon.de",
|
|
r: 0,
|
|
s: "Amazon.de",
|
|
sc: "Music",
|
|
t: "amademp3",
|
|
u: "https://www.amazon.de/s?k={{{s}}}&i=digital-music",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.com",
|
|
r: 0,
|
|
s: "Amazon Alexa Skills Search Page",
|
|
sc: "Services",
|
|
t: "amalexa",
|
|
u: "https://www.amazon.com/s?k={{{s}}}&i=alexa-skills",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.com",
|
|
r: 1168,
|
|
s: "Amazon.com",
|
|
sc: "Online",
|
|
t: "am",
|
|
u: "https://www.amazon.com/s?k={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "amanz.my",
|
|
r: 0,
|
|
s: "Amanz",
|
|
sc: "Blogs",
|
|
t: "amanz",
|
|
u: "https://amanz.my/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "maps.apple.com",
|
|
r: 10,
|
|
s: "Apple Maps",
|
|
sc: "Maps",
|
|
t: "amaps",
|
|
u: "http://maps.apple.com/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.amara.org",
|
|
r: 0,
|
|
s: "Amara",
|
|
sc: "Video",
|
|
t: "amara",
|
|
u: "http://www.amara.org/search/#/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.com.au",
|
|
r: 63,
|
|
s: "amazon.com.au",
|
|
sc: "Online",
|
|
t: "amau",
|
|
u: "https://www.amazon.com.au/s?k={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.com",
|
|
r: 3537,
|
|
s: "Amazon.com",
|
|
sc: "Online",
|
|
t: "amazon",
|
|
u: "https://www.amazon.com/s?k={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.com.au",
|
|
r: 73,
|
|
s: "Amazon.com.au",
|
|
sc: "Online",
|
|
t: "amazonau",
|
|
u: "https://www.amazon.com.au/s?k={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.ca",
|
|
r: 224,
|
|
s: "Amazon.ca",
|
|
sc: "Online (intl)",
|
|
t: "amazonca",
|
|
u: "https://www.amazon.ca/s?k={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.cn",
|
|
r: 0,
|
|
s: "Amazon.cn",
|
|
sc: "Online (intl)",
|
|
t: "amazoncn",
|
|
u: "https://www.amazon.cn/s?k={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.de",
|
|
r: 0,
|
|
s: "Amazon.de",
|
|
sc: "Online",
|
|
t: "amazon_de",
|
|
u: "https://www.amazon.de/s?k={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.de",
|
|
r: 396,
|
|
s: "Amazon.de",
|
|
sc: "Online (intl)",
|
|
t: "amazonde",
|
|
u: "https://www.amazon.de/s?k={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.es",
|
|
r: 176,
|
|
s: "Amazon.es",
|
|
sc: "Online (intl)",
|
|
t: "amazones",
|
|
u: "https://www.amazon.es/s?k={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.fr",
|
|
r: 129,
|
|
s: "Amazon.fr",
|
|
sc: "Online (intl)",
|
|
t: "amazonfr",
|
|
u: "https://www.amazon.fr/s?k={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.in",
|
|
r: 136,
|
|
s: "Amazon India",
|
|
sc: "Online (intl)",
|
|
t: "amazonin",
|
|
u: "https://www.amazon.in/s?k={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.in",
|
|
r: 50,
|
|
s: "Amazon India",
|
|
sc: "Online",
|
|
t: "amazon.in",
|
|
u: "http://www.amazon.in/s?k={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.it",
|
|
r: 5,
|
|
s: "Amazon.it",
|
|
sc: "Online",
|
|
t: "amazon.it",
|
|
u: "https://www.amazon.it/s/s?k={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.it",
|
|
r: 114,
|
|
s: "Amazon.it",
|
|
sc: "Online (intl)",
|
|
t: "amazonit",
|
|
u: "https://www.amazon.it/s/s?k={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.co.jp",
|
|
r: 87,
|
|
s: "Amazon.co.jp",
|
|
sc: "Online (intl)",
|
|
t: "amazonjp",
|
|
u: "https://www.amazon.co.jp/s?k={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.com",
|
|
r: 0,
|
|
s: "Amazon MP3 Store",
|
|
sc: "Online (intl)",
|
|
t: "amazonmp3",
|
|
u: "https://www.amazon.com/s?k={{{s}}}&i=digital-music",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.com.mx",
|
|
r: 66,
|
|
s: "Amazon M\u00e9xico",
|
|
sc: "Online",
|
|
t: "amazonmx",
|
|
u: "https://www.amazon.com.mx/s?k={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.nl",
|
|
r: 50,
|
|
s: "Amazon Nederland",
|
|
sc: "Online",
|
|
t: "amazonnl",
|
|
u: "https://www.amazon.nl/s?k={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.com",
|
|
r: 0,
|
|
s: "Amazon.com order history",
|
|
sc: "Online",
|
|
t: "amazonorders",
|
|
u: "https://www.amazon.com/gp/your-account/order-history/ref=oh_aui_search?opt=ab&search={{{s}}} ",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.com.tr",
|
|
r: 21,
|
|
s: "Amazon.com.tr",
|
|
sc: "Online",
|
|
t: "amazontr",
|
|
u: "https://www.amazon.com.tr/s?k={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.co.uk",
|
|
r: 274,
|
|
s: "Amazon.co.uk",
|
|
sc: "Online (intl)",
|
|
t: "amazonuk",
|
|
u: "https://www.amazon.co.uk/s?k={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.ca",
|
|
r: 103,
|
|
s: "Amazon.ca",
|
|
sc: "Online (intl)",
|
|
t: "amca",
|
|
u: "https://www.amazon.ca/s?k={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.ca",
|
|
r: 0,
|
|
s: "Amazon.ca",
|
|
sc: "Online",
|
|
t: "am.ca",
|
|
u: "https://www.amazon.ca/s?k={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.amctv.com",
|
|
r: 0,
|
|
s: "AMC TV",
|
|
sc: "TV",
|
|
t: "amc",
|
|
u: "http://www.amctv.com/search#q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.com",
|
|
r: 0,
|
|
s: "Amazon Cloud",
|
|
sc: "Online (marketplace)",
|
|
t: "amcloud",
|
|
u: "https://www.amazon.com/clouddrive/#G=0&path={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.cn",
|
|
r: 0,
|
|
s: "Amazon.cn",
|
|
sc: "Online (intl)",
|
|
t: "amcn",
|
|
u: "https://www.amazon.cn/s?k={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "search.amd.com",
|
|
r: 7,
|
|
s: "AMD",
|
|
sc: "Companies",
|
|
t: "amd",
|
|
u: "http://search.amd.com/en-us/Pages/results-all.aspx?k={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.de",
|
|
r: 343,
|
|
s: "Amazon.de",
|
|
sc: "Online (intl)",
|
|
t: "amde",
|
|
u: "https://www.amazon.de/s?k={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "search.ameba.jp",
|
|
r: 0,
|
|
s: "Ameblo",
|
|
sc: "Blogs (intl)",
|
|
t: "ameblo",
|
|
u: "http://search.ameba.jp/search.html?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "careers.amegybank.com",
|
|
r: 0,
|
|
s: "Amegy Bank Careers",
|
|
sc: "Jobs",
|
|
t: "amegy",
|
|
u: "https://careers.amegybank.com/search-results?keywords={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "agentcareers.americannational.com",
|
|
r: 0,
|
|
s: "American National Careers",
|
|
sc: "Jobs",
|
|
t: "american",
|
|
u: "https://agentcareers.americannational.com/search-results?keywords={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "americastestkitchen.com",
|
|
r: 0,
|
|
s: "AmericasTestKitchen",
|
|
sc: "Food",
|
|
t: "americastestkitchen",
|
|
u: "http://americastestkitchen.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.es",
|
|
r: 139,
|
|
s: "Amazon.es",
|
|
sc: "Online (intl)",
|
|
t: "ames",
|
|
u: "https://www.amazon.es/s?k={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "journals.ametsoc.org",
|
|
r: 0,
|
|
s: "American Meteorology Society ",
|
|
sc: "Academic",
|
|
t: "ametsoc",
|
|
u: "https://journals.ametsoc.org/action/doSearch?AllField={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "ask.metafilter.com",
|
|
r: 3,
|
|
s: "Ask Metafilter",
|
|
sc: "Topical",
|
|
t: "amf",
|
|
u: "http://ask.metafilter.com/search.mefi?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.fr",
|
|
r: 263,
|
|
s: "Amazon.fr",
|
|
sc: "Online (intl)",
|
|
t: "amfr",
|
|
u: "https://www.amazon.fr/s?k={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.allmusic.com",
|
|
r: 110,
|
|
s: "Allmusic",
|
|
sc: "Music",
|
|
t: "amg",
|
|
u: "http://www.allmusic.com/search/all/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.com",
|
|
r: 0,
|
|
s: "Amazon (GLOBAL)",
|
|
sc: "Services",
|
|
t: "amglobal",
|
|
u: "https://www.amazon.com/s?k={{{s}}}&i=us-worldwide-shipping-aps",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.angrymetalguy.com",
|
|
r: 0,
|
|
s: "Angry Metal Guy",
|
|
sc: "Music",
|
|
t: "amguy",
|
|
u: "https://www.angrymetalguy.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "slist.amiami.com",
|
|
r: 28,
|
|
s: "Amiami",
|
|
sc: "Online",
|
|
t: "amiami",
|
|
u: "http://slist.amiami.com/top/search/list?s_keywords={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.in",
|
|
r: 245,
|
|
s: "Amazon India",
|
|
sc: "Online",
|
|
t: "amin",
|
|
u: "https://www.amazon.in/s?k={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "aminet.net",
|
|
r: 0,
|
|
s: "Aminet",
|
|
sc: "Downloads",
|
|
t: "aminet",
|
|
u: "http://aminet.net/search?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "haveibeenpwned.com",
|
|
r: 0,
|
|
s: "Have I Been Pwned?",
|
|
sc: "Tools",
|
|
t: "amipwned",
|
|
u: "https://haveibeenpwned.com/account/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.it",
|
|
r: 94,
|
|
s: "Amazon.it",
|
|
sc: "Online (intl)",
|
|
t: "amit",
|
|
u: "https://www.amazon.it/s?k={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.co.jp",
|
|
r: 157,
|
|
s: "Amazon.co.jp",
|
|
sc: "Online (intl)",
|
|
t: "amjp",
|
|
u: "https://www.amazon.co.jp/s?k={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "marketplace.atlassian.com",
|
|
r: 0,
|
|
s: "Atlassian Marketplace",
|
|
sc: "Online (marketplace)",
|
|
t: "amkt",
|
|
u: "https://marketplace.atlassian.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.ammodepottx.com",
|
|
r: 0,
|
|
s: "Ammo Depot",
|
|
sc: "Online",
|
|
t: "ammo",
|
|
u: "http://www.ammodepottx.com/#sthash.Bx8Cvh8l.dpbs={{{s}}}:",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "jobs.amncareers.com",
|
|
r: 0,
|
|
s: "AMN Careers",
|
|
sc: "Jobs",
|
|
t: "amn",
|
|
u: "https://jobs.amncareers.com/search-results?keywords={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.amnesty.org",
|
|
r: 0,
|
|
s: "Amnesty International",
|
|
sc: "Social (intl)",
|
|
t: "amnesty",
|
|
u: "https://www.amnesty.org/en/search/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.amoeba.com",
|
|
r: 0,
|
|
s: "Ameoba music",
|
|
sc: "Music",
|
|
t: "amoeba",
|
|
u: "https://www.amoeba.com/search/all/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "addons.mozilla.org",
|
|
r: 131,
|
|
s: "Firefox Add-ons",
|
|
sc: "Downloads (add-ons)",
|
|
t: "amo",
|
|
u: "https://addons.mozilla.org/firefox/search/?q={{{s}}}&cat=all",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.com",
|
|
r: 0,
|
|
s: "Amazon MP3 Store",
|
|
sc: "Online",
|
|
t: "amp3",
|
|
u: "https://www.amazon.com/s?k={{{s}}}&i=digital-music",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "careers.amplifysnacks.com",
|
|
r: 0,
|
|
s: "Amplify snacks careers",
|
|
sc: "Jobs",
|
|
t: "amplify",
|
|
u: "https://careers.amplifysnacks.com/search-results?keywords={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.auto-medienportal.net",
|
|
r: 0,
|
|
s: "Auto-Medienportal.Net",
|
|
sc: "Magazine (car)",
|
|
t: "ampnet",
|
|
u: "http://www.auto-medienportal.net/artikel/quicksearch/?searchterm={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.ampparit.com",
|
|
r: 0,
|
|
s: "Ampparit.com",
|
|
sc: "Aggregators",
|
|
t: "ampparit",
|
|
u: "http://www.ampparit.com/haku?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.amp-what.com",
|
|
r: 0,
|
|
s: "Amp What",
|
|
sc: "Design",
|
|
t: "amp-what",
|
|
u: "http://www.amp-what.com/unicode/search/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.amp-what.com",
|
|
r: 0,
|
|
s: "&what;",
|
|
sc: "Programming",
|
|
t: "ampwhat",
|
|
u: "http://www.amp-what.com/unicode/search/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "smile.amazon.com",
|
|
r: 18,
|
|
s: "Amazon Smile",
|
|
sc: "Online",
|
|
t: "ams",
|
|
u: "http://smile.amazon.com/s/ref=nb_sb_noss_2?url=search-alias%3Daps&field-keywords={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "smile.amazon.co.uk",
|
|
r: 0,
|
|
s: "Amazon Smile (UK)",
|
|
sc: "Online",
|
|
t: "amsuk",
|
|
u: "https://smile.amazon.co.uk/s?field-keywords={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.co.uk",
|
|
r: 411,
|
|
s: "Amazon.co.uk",
|
|
sc: "Online (intl)",
|
|
t: "amuk",
|
|
u: "https://www.amazon.co.uk/s?k={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.co.uk",
|
|
r: 0,
|
|
s: "Amazon.co.uk MP3",
|
|
sc: "Online (intl)",
|
|
t: "amukmp3",
|
|
u: "https://www.amazon.co.uk/s?k={{{s}}}&i=digital-music",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.com",
|
|
r: 4,
|
|
s: "Amazon.com",
|
|
sc: "Online",
|
|
t: "amus",
|
|
u: "https://www.amazon.com/s?k={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "music.amazon.com",
|
|
r: 7,
|
|
s: "Amazon Music",
|
|
sc: "Audio",
|
|
t: "amusic",
|
|
u: "https://music.amazon.com/search/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.google.com",
|
|
r: 0,
|
|
s: "Amusing Planet",
|
|
sc: "General",
|
|
t: "amusing",
|
|
u: "https://www.google.com/cse?cx=partner-pub-4049870445958322%3Apxmbpw-atgu&ie=ISO-8859-1&q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.com",
|
|
r: 0,
|
|
s: "Amazon Instant Video",
|
|
sc: "Online",
|
|
t: "amvid",
|
|
u: "https://www.amazon.com/s/url=search-alias%3Dinstant-video&field-keywords={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.amazon.de",
|
|
r: 0,
|
|
s: "Amazon.de Instant Video",
|
|
sc: "Video",
|
|
t: "amvidde",
|
|
u: "http://www.amazon.de/s/url=search-alias%3Dinstant-video&field-keywords={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amway.com",
|
|
r: 0,
|
|
s: "Amway.com",
|
|
sc: "Online",
|
|
t: "amway",
|
|
u: "https://www.amway.com/Shop/Search/SearchResults.aspx?searchkeyword={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.com.mx",
|
|
r: 462,
|
|
s: "Amazon M\u00e9xico",
|
|
sc: "Online",
|
|
t: "amx",
|
|
u: "https://www.amazon.com.mx/s?k={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.com",
|
|
r: 271,
|
|
s: "Amazon",
|
|
sc: "Online",
|
|
t: "amz",
|
|
u: "https://www.amazon.com/s?k={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.com",
|
|
r: 3,
|
|
s: "Amazon Books",
|
|
sc: "Online",
|
|
t: "amzbks",
|
|
u: "https://www.amazon.com/s?k={{{s}}}&i=stripbooks",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.de",
|
|
r: 0,
|
|
s: "Amazon.de",
|
|
sc: "Online",
|
|
t: "amznde",
|
|
u: "https://www.amazon.de/s?k={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.in",
|
|
r: 16,
|
|
s: "Amazon India",
|
|
sc: "Online (marketplace)",
|
|
t: "amznin",
|
|
u: "https://www.amazon.in/s?k={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "anarchy101.org",
|
|
r: 0,
|
|
s: "Anarchy101",
|
|
sc: "Learning",
|
|
t: "an101",
|
|
u: "http://anarchy101.org/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "anaconda.org",
|
|
r: 7,
|
|
s: "Anaconda Cloud",
|
|
sc: "Downloads (software)",
|
|
t: "anaconda",
|
|
u: "https://anaconda.org/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "new.wordsmith.org",
|
|
r: 0,
|
|
s: "Internet Anagram Server",
|
|
sc: "Reference (fun)",
|
|
t: "anag",
|
|
u: "https://new.wordsmith.org/anagram/anagram.cgi?anagram={{{s}}}&t=500&a=n",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.oneacross.com",
|
|
r: 6,
|
|
s: "One Across",
|
|
sc: "Reference (words)",
|
|
t: "anagram",
|
|
u: "http://www.oneacross.com/cgi-bin/search_anagram.cgi?p0={{{s}}}&c0=&s=+Go+",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "careers.analog.com",
|
|
r: 0,
|
|
s: "Analog Devices Careers",
|
|
sc: "Jobs",
|
|
t: "analog",
|
|
u: "https://careers.analog.com/search-results?keywords={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "duckduckgo.com",
|
|
r: 0,
|
|
s: "analyse-R",
|
|
sc: "Academic",
|
|
t: "analyser",
|
|
u: "https://duckduckgo.com/?q={{{s}}}+site%3Ahttp%3A%2F%2Flarmarange.github.io%2Fanalyse-R",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "anandtech.com",
|
|
r: 0,
|
|
s: "Anandtech",
|
|
sc: "Blogs",
|
|
t: "anandtech",
|
|
u: "http://anandtech.com/SearchResults?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "anilist.co",
|
|
r: 4,
|
|
s: "AniList",
|
|
sc: "Specialty",
|
|
t: "an",
|
|
u: "http://anilist.co/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "en.anarchopedia.org",
|
|
r: 0,
|
|
s: "Anarchopedia",
|
|
sc: "Reference",
|
|
t: "anaped",
|
|
u: "http://en.anarchopedia.org/index.php?title=Special:Search&search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "theanarchistlibrary.org",
|
|
r: 0,
|
|
s: "The Anarchist Library",
|
|
sc: "Government",
|
|
t: "anarchistlib",
|
|
u: "http://theanarchistlibrary.org/search?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "anarchopedia.org",
|
|
r: 0,
|
|
s: "Anarchopedia",
|
|
sc: "Reference",
|
|
t: "anarchopedia",
|
|
u: "http://anarchopedia.org/Special:Search?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.androidauthority.com",
|
|
r: 0,
|
|
s: "Android Authority",
|
|
sc: "Blogs",
|
|
t: "anau",
|
|
u: "http://www.androidauthority.com/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.ancestry.com",
|
|
r: 9,
|
|
s: "Ancestry",
|
|
sc: "Topical",
|
|
t: "ancestry",
|
|
u: "https://www.ancestry.com/search/?keyword={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "android-arsenal.com",
|
|
r: 0,
|
|
s: "Android Arsenal",
|
|
sc: "Programming",
|
|
t: "andar",
|
|
u: "https://android-arsenal.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.androidcentral.com",
|
|
r: 0,
|
|
s: "Android Central",
|
|
sc: "Blogs",
|
|
t: "andce",
|
|
u: "https://www.androidcentral.com/search/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "developer.android.com",
|
|
r: 0,
|
|
s: "Android Developers",
|
|
sc: "Programming",
|
|
t: "andev",
|
|
u: "https://developer.android.com/s/results/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.androidpolice.com",
|
|
r: 0,
|
|
s: "Android Police",
|
|
sc: "Specialty",
|
|
t: "andpol",
|
|
u: "http://www.androidpolice.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "developer.android.com",
|
|
r: 31,
|
|
s: "Android Developers",
|
|
sc: "Programming",
|
|
t: "android",
|
|
u: "https://developer.android.com/s/results/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.androidpit.com",
|
|
r: 0,
|
|
s: "AndroidPit",
|
|
sc: "Downloads (apps)",
|
|
t: "androidpit",
|
|
u: "http://www.androidpit.com/en/android/search?st={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.androidpit.fr",
|
|
r: 0,
|
|
s: "AndroidPit (Fr)",
|
|
sc: "Blogs",
|
|
t: "androidpitfr",
|
|
u: "http://www.androidpit.fr/search?st={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.anevry.com",
|
|
r: 0,
|
|
s: "Anevry",
|
|
sc: "Design",
|
|
t: "anevry",
|
|
u: "http://www.anevry.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.abercrombie.com",
|
|
r: 0,
|
|
s: "Abercrombie & Fitch",
|
|
sc: "Online",
|
|
t: "anf",
|
|
u: "https://www.abercrombie.com/webapp/wcs/stores/servlet/Search?storeId=10051&catalogId=10901&langId=-1&departmentCategoryId=10000&search-field={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "duckduckgo.com",
|
|
r: 0,
|
|
s: "Angular",
|
|
sc: "Libraries/Frameworks",
|
|
t: "ang",
|
|
u: "https://duckduckgo.com/?q={{{s}}}+site%3Aangular.io",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.angelajey.com",
|
|
r: 0,
|
|
s: "Angela Jey",
|
|
sc: "Online (marketplace)",
|
|
t: "angelajey",
|
|
u: "https://www.angelajey.com/index.php?route=product/search&search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.rigvedawiki.net",
|
|
r: 0,
|
|
s: "Angelhalo Wiki",
|
|
sc: "Reference",
|
|
t: "angelhalowiki",
|
|
u: "http://www.rigvedawiki.net/r1/wiki.php/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "angel.co",
|
|
r: 0,
|
|
s: "AngelList",
|
|
sc: "Startups",
|
|
t: "angellist",
|
|
u: "https://angel.co/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.anghami.com",
|
|
r: 0,
|
|
s: "anghami",
|
|
sc: "Music",
|
|
t: "anghami",
|
|
u: "https://www.anghami.com/search/{{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.anglenews.com",
|
|
r: 0,
|
|
s: "Angle News",
|
|
sc: "Newspaper (intl)",
|
|
t: "anglenews",
|
|
u: "https://www.anglenews.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.angrymetalguy.com",
|
|
r: 9,
|
|
s: "Angry Metal Guy",
|
|
sc: "Music",
|
|
t: "angry",
|
|
u: "https://www.angrymetalguy.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "angular.io",
|
|
r: 0,
|
|
s: "Angular.io",
|
|
sc: "Languages (javascript)",
|
|
t: "angular",
|
|
u: "https://angular.io/api?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "docs.angularjs.org",
|
|
r: 0,
|
|
s: "Angular JS (1.0) documentation",
|
|
sc: "Languages (javascript)",
|
|
t: "angularjs",
|
|
u: "https://docs.angularjs.org/?as_q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "library.angus.gov.uk",
|
|
r: 0,
|
|
s: "Angus Libraries Catalogue",
|
|
sc: "Reference",
|
|
t: "anguscatalogue",
|
|
u: "http://library.angus.gov.uk/ipac20/ipac.jsp?session=138BN7L458484.310312&menu=search&aspect=subtab184&npp=10&ipp=20&spp=20&profile=ang--7&ri=&term={{{s}}}&index=.AW&x=-354&y=-218&aspect=subtab184&term=&index=.TW&term=&index=.SE&term=&index=.SW&term=&index=BSTLLR&sort=",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "anilist.co",
|
|
r: 40,
|
|
s: "Anilist",
|
|
sc: "TV",
|
|
t: "ani",
|
|
u: "https://anilist.co/search/anime?sort=SEARCH_MATCH&search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "anime.akihabara.cz",
|
|
r: 0,
|
|
s: "Anime Akihabara",
|
|
sc: "Forum",
|
|
t: "anibara",
|
|
u: "http://anime.akihabara.cz/vyhledavani/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "anibin.blogspot.com",
|
|
r: 0,
|
|
s: "anibin",
|
|
sc: "Video",
|
|
t: "anibin",
|
|
u: "https://anibin.blogspot.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "anidb.net",
|
|
r: 184,
|
|
s: "AniDB",
|
|
sc: "Misc",
|
|
t: "anidb",
|
|
u: "https://anidb.net/perl-bin/animedb.pl?adb.search={{{s}}}&show=animelist&do.search=search",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "katzothek.provital.com",
|
|
r: 0,
|
|
s: "Die Katzothek | Gesundes und artgerechtes Katzenfutter von Anifit",
|
|
sc: "Online (marketplace)",
|
|
t: "anifit",
|
|
u: "https://katzothek.provital.com/content/partners/katzothek/futtershop/de/article_search?article_name={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "anilist.co",
|
|
r: 145,
|
|
s: "anilist.co",
|
|
sc: "Movies",
|
|
t: "anilist",
|
|
u: "https://anilist.co/search/anime?sort=SEARCH_MATCH&search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "anilyrics.com",
|
|
r: 0,
|
|
s: "AniLyrics",
|
|
sc: "Audio",
|
|
t: "anilyrics",
|
|
u: "https://anilyrics.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "anidb.net",
|
|
r: 52,
|
|
s: "AniDB",
|
|
sc: "General",
|
|
t: "anime",
|
|
u: "https://anidb.net/perl-bin/animedb.pl?show=animelist&adb.search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.animefillerlist.com",
|
|
r: 0,
|
|
s: "Anime Filler List",
|
|
sc: "Tools",
|
|
t: "animefiller",
|
|
u: "http://www.animefillerlist.com/search/node/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "animeka.com",
|
|
r: 0,
|
|
s: "Animeka",
|
|
sc: "TV",
|
|
t: "animeka",
|
|
u: "http://animeka.com/search/index.html?req={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.animelyrics.com",
|
|
r: 0,
|
|
s: "AnimeLyrics",
|
|
sc: "Music (Lyrics)",
|
|
t: "animelyrics",
|
|
u: "http://www.animelyrics.com/search.php?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.animenewsnetwork.com",
|
|
r: 0,
|
|
s: "Anime News Network",
|
|
sc: "Misc",
|
|
t: "animenewsnetwork",
|
|
u: "http://www.animenewsnetwork.com/search?cx=016604166282602569737:znd1ysjewre&cof=FORID:11&q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.anime-planet.com",
|
|
r: 3,
|
|
s: "Anime Planet",
|
|
sc: "Misc",
|
|
t: "anime-planet",
|
|
u: "http://www.anime-planet.com/anime/all?name={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.anime-planet.com",
|
|
r: 0,
|
|
s: "Anime-Planet",
|
|
sc: "Misc",
|
|
t: "animeplanet",
|
|
u: "http://www.anime-planet.com/anime/all?name={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "kitsu.io",
|
|
r: 0,
|
|
s: "Kitsu Anime",
|
|
sc: "TV",
|
|
t: "animes",
|
|
u: "https://kitsu.io/anime?text={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "animesimple.com",
|
|
r: 0,
|
|
s: "Anime Simple",
|
|
sc: "TV",
|
|
t: "animsi",
|
|
u: "https://animesimple.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.anisearch.com",
|
|
r: 4,
|
|
s: "aniSearch",
|
|
sc: "Video",
|
|
t: "anisearch",
|
|
u: "https://www.anisearch.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.actionnewsjax.com",
|
|
r: 0,
|
|
s: "Action News Jax",
|
|
sc: "Broadcast",
|
|
t: "anj",
|
|
u: "http://www.actionnewsjax.com/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "ankiweb.net",
|
|
r: 0,
|
|
s: "Ankiweb",
|
|
sc: "Academic",
|
|
t: "anki",
|
|
u: "https://ankiweb.net/shared/decks/{{{s}}}",
|
|
},
|
|
{
|
|
d: "www.apertium.org",
|
|
r: 0,
|
|
s: "https://www.apertium.org",
|
|
t: "anlaf",
|
|
u: "https://www.apertium.org/index.eng.html?dir=nld-afr&q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "nedir-sozluk.com",
|
|
r: 0,
|
|
s: "Nedir S\u00f6zl\u00fck",
|
|
sc: "Search",
|
|
t: "anlam\u0131",
|
|
u: "http://nedir-sozluk.com/ara/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.anmat.gov.ar",
|
|
r: 0,
|
|
s: "ANMAT",
|
|
sc: "Health",
|
|
t: "anmat",
|
|
u: "http://www.anmat.gov.ar/resultados.asp?cx=018082787451070703178%3Arx-vbt5pdfu&cof=FORID%3A10&ie=UTF-8&q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.animenewsnetwork.com",
|
|
r: 203,
|
|
s: "Anime News Network",
|
|
sc: "Misc",
|
|
t: "ann",
|
|
u: "http://www.animenewsnetwork.com/search?cx=016604166282602569737:znd1ysjewre&cof=FORID:11&q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.animenewsnetwork.com",
|
|
r: 3,
|
|
s: "AnimeNewsNetwork Encyclopedia",
|
|
sc: "Comics",
|
|
t: "anne",
|
|
u: "http://www.animenewsnetwork.com/encyclopedia/search/name?only=anime&q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "annex.931women.com",
|
|
r: 0,
|
|
s: "\u306a\u3093\u307d\u308b\u3068\u3053\u308f\u5225\u9928",
|
|
sc: "Blogs",
|
|
t: "annex.931women",
|
|
u: "https://annex.931women.com/?s={{{s}}}: ",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.appannie.com",
|
|
r: 0,
|
|
s: "App Annie",
|
|
sc: "Tracking",
|
|
t: "annie",
|
|
u: "http://www.appannie.com/search/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.anobii.com",
|
|
r: 0,
|
|
s: "anobii",
|
|
sc: "Books",
|
|
t: "anobii",
|
|
u: "http://www.anobii.com/search?s=1&keyword={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "anoik.is",
|
|
r: 0,
|
|
s: "Anoik.is",
|
|
sc: "Games (specific)",
|
|
t: "anoikis",
|
|
u: "http://anoik.is/systems/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "anotchortwo.com",
|
|
r: 0,
|
|
s: "a notch or two",
|
|
sc: "Blogs (intl)",
|
|
t: "anotchortwo",
|
|
u: "http://anotchortwo.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "primenow.amazon.com",
|
|
r: 0,
|
|
s: "Amazon Prime Now",
|
|
sc: "Online",
|
|
t: "aNOW",
|
|
u: "https://primenow.amazon.com/search?k={{{s}}} ",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.ansa.it",
|
|
r: 57,
|
|
s: "Ansa",
|
|
sc: "Newspaper",
|
|
t: "ansa",
|
|
u: "http://www.ansa.it/ricerca/index.jsp?si=1&ns=10&sb=date&lang=it&home=%2Fweb&search=1&c=webarchive&qt={{{s}}}&radio-search=ansa&forid=1&ie=ISO-8859-1&oe=ISO-8859-1&cof=GALT%3A%23008000%3BGL%3A1%3BDIV%3A%23009C41%3BVLC%3A663399%3BAH%3Acenter%3BBGC%3AFFFFFF%3BLBGC%3A336699%3BALC%3A10578b%3BLC%3A10578b%3BT%3A000000%3BGFNT%3A10578b%3BGIMP%3A10578b%3BFORID%3A11&hl=it&client=pub-2538762546398839",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "docs.ansible.com",
|
|
r: 46,
|
|
s: "docs.ansible.com",
|
|
sc: "Sysadmin",
|
|
t: "ansible",
|
|
u: "https://docs.ansible.com/ansible/latest/#stq={{{s}}}&stp=1",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "galaxy.ansible.com",
|
|
r: 0,
|
|
s: "Ansible Galaxy",
|
|
sc: "Sysadmin",
|
|
t: "ansible-galaxy",
|
|
u: "https://galaxy.ansible.com/list#/roles?page=1&page_size=10&autocomplete={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "docs.ansible.com",
|
|
r: 0,
|
|
s: "Ansible Module Documentation",
|
|
sc: "Sysadmin",
|
|
t: "ansiblemod",
|
|
u: "http://docs.ansible.com/ansible/{{{s}}}_module.html",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "answers.splunk.com",
|
|
r: 0,
|
|
s: "Splunk Answers",
|
|
sc: "Companies",
|
|
t: "ans.splunk",
|
|
u: "https://answers.splunk.com/search.html?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.answers.com",
|
|
r: 0,
|
|
s: "Answers.com",
|
|
sc: "Misc",
|
|
t: "answers",
|
|
u: "http://www.answers.com/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "answersingenesis.org",
|
|
r: 0,
|
|
s: "Answers in Genesis",
|
|
sc: "Reference (science)",
|
|
t: "answersingenesis",
|
|
u: "https://answersingenesis.org/search/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "answers.splunk.com",
|
|
r: 0,
|
|
s: "answers.splunk.com",
|
|
sc: "Companies",
|
|
t: "answers.splunk",
|
|
u: "http://answers.splunk.com/search/?q={{{s}}}&Submit=Search",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "answers.yahoo.com",
|
|
r: 0,
|
|
s: "Yahoo! Answers",
|
|
sc: "Search",
|
|
t: "answer",
|
|
u: "http://answers.yahoo.com/search/search_result;_ylt=AmLr_DtDPVmDQzOuA2T6sxAjzKIX;_ylv=3?p={{{s}}}&submit-go=Search+Y!+Answers",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "news.antiwar.com",
|
|
r: 0,
|
|
s: "Antiwar.com",
|
|
sc: "Aggregators",
|
|
t: "antiwar",
|
|
u: "http://news.antiwar.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.antonimos.net",
|
|
r: 0,
|
|
s: "Antonimos",
|
|
sc: "Tools",
|
|
t: "antonimo",
|
|
u: "http://www.antonimos.net/?termino={{{s}}}&btnG=Ant%F3nimos",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.antonimos.com.br",
|
|
r: 0,
|
|
s: "Ant\u00f4nimos.com.br",
|
|
sc: "Tools",
|
|
t: "antonimos",
|
|
u: "https://www.antonimos.com.br/busca.php?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.synonyms.net",
|
|
r: 7,
|
|
s: "Synonyms.net",
|
|
sc: "Reference (words)",
|
|
t: "antonym",
|
|
u: "http://www.synonyms.net/antonyms/{{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "antyweb.pl",
|
|
r: 0,
|
|
s: "Antyweb",
|
|
sc: "Specialty",
|
|
t: "antyweb",
|
|
u: "http://antyweb.pl/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "anu.summon.serialssolutions.com",
|
|
r: 0,
|
|
s: "The Australian National University Library",
|
|
sc: "Academic",
|
|
t: "anulib",
|
|
u: "http://anu.summon.serialssolutions.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "find.anu.edu.au",
|
|
r: 0,
|
|
s: "The Australian National University",
|
|
sc: "Academic",
|
|
t: "anu",
|
|
u: "http://find.anu.edu.au/search?filter=0&client=anu_frontend&proxystylesheet=anu_frontend&site=default_collection&btnG=Search&q={{{s}}}&search1=Go",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "anw.inl.nl",
|
|
r: 0,
|
|
s: "Algemeen Nederlands Woordenboek",
|
|
sc: "Reference (words)",
|
|
t: "anw",
|
|
u: "http://anw.inl.nl/search?type=simple&q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "archiveofourown.org",
|
|
r: 1040,
|
|
s: "Archive of our Own",
|
|
sc: "Misc",
|
|
t: "ao3",
|
|
u: "https://archiveofourown.org/works/search?utf8=%E2%9C%93&work_search%5Bquery%5D={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "archiveofourown.org",
|
|
r: 0,
|
|
s: "Archive of Our Own (Tag Search)",
|
|
sc: "Misc",
|
|
t: "ao3tags",
|
|
u: "https://archiveofourown.org/tags/search?query[name]={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.com",
|
|
r: 122,
|
|
s: "Amazon Orders",
|
|
sc: "Online",
|
|
t: "ao",
|
|
u: "https://www.amazon.com/gp/your-account/order-history/ref=oh_aui_search?opt=ab&search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.reddit.com",
|
|
r: 0,
|
|
s: "AOE 2 Reddit Page",
|
|
sc: "Games (specific)",
|
|
t: "aoe2r",
|
|
u: "https://www.reddit.com/r/aoe2/search?q={{{s}}}&restrict_sr=1",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "ageofempires.wikia.com",
|
|
r: 3,
|
|
s: "Age of Empires Wiki",
|
|
sc: "Games (specific)",
|
|
t: "aoe",
|
|
u: "http://ageofempires.wikia.com/wiki/Special:Search?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "search.aol.com",
|
|
r: 5,
|
|
s: "AOL",
|
|
sc: "Reference (words)",
|
|
t: "aol",
|
|
u: "http://search.aol.com/aol/search?enabled_terms=&s_it=comsearch&q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.artofmanliness.com",
|
|
r: 17,
|
|
s: "Art of Manliness",
|
|
sc: "Blogs",
|
|
t: "aom",
|
|
u: "http://www.artofmanliness.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "artofproblemsolving.com",
|
|
r: 9,
|
|
s: "Art of Problem Solving [Wiki]",
|
|
sc: "Academic (math/cs)",
|
|
t: "aops",
|
|
u: "http://artofproblemsolving.com/wiki/index.php?title=Special%3ASearch&fulltext=Search&search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "artofproblemsolving.com",
|
|
r: 0,
|
|
s: "Art Of Problem Solving Community",
|
|
sc: "Social",
|
|
t: "aopscomm",
|
|
u: "https://artofproblemsolving.com/community/search/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.albumoftheyear.org",
|
|
r: 182,
|
|
s: "Album of The Year",
|
|
sc: "Music",
|
|
t: "aoty",
|
|
u: "https://www.albumoftheyear.org/search.php?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "db.vanillagaming.org",
|
|
r: 0,
|
|
s: "AoWoW VanillaGaming",
|
|
sc: "Games (WOW)",
|
|
t: "aowow",
|
|
u: "http://db.vanillagaming.org/?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "apastyle.org",
|
|
r: 0,
|
|
s: "APA Style",
|
|
sc: "Reference (science)",
|
|
t: "apa",
|
|
u: "http://apastyle.org/search.aspx?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "duckduckgo.com",
|
|
r: 0,
|
|
s: "Apache Docs",
|
|
sc: "Sysadmin",
|
|
t: "apache",
|
|
u: "https://duckduckgo.com/?q={{{s}}}+site%3Ahttps%3A%2F%2Fhttpd.apache.org%2Fdocs%2Fcurrent%2F",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.archlinux.org",
|
|
r: 4,
|
|
s: "ArchLinux Packages",
|
|
sc: "Languages (other)",
|
|
t: "apackages",
|
|
u: "http://www.archlinux.org/packages/?sort=&q={{{s}}}&maintainer=&last_update=&flagged=&limit=50",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "ap.org",
|
|
r: 27,
|
|
s: "AP",
|
|
sc: "Broadcast",
|
|
t: "ap",
|
|
u: "http://ap.org/Search/SearchResults?searchkeywords={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.aparat.com",
|
|
r: 0,
|
|
s: "Aparat",
|
|
sc: "Video",
|
|
t: "aparat",
|
|
u: "http://www.aparat.com/result/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "auspost.com.au",
|
|
r: 0,
|
|
s: "Australia Post Postcode Lookup",
|
|
sc: "Local",
|
|
t: "apc",
|
|
u: "https://auspost.com.au/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "apstudent.collegeboard.org",
|
|
r: 0,
|
|
s: "AP Central College Board",
|
|
sc: "Academic",
|
|
t: "apcentral",
|
|
u: "https://apstudent.collegeboard.org/search?searchq={{{s}}}&searchType=aps_site&tp=aps_site",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.archlinux.org",
|
|
r: 7,
|
|
s: "Archlinux packages",
|
|
sc: "Sysadmin (Arch)",
|
|
t: "apck",
|
|
u: "https://www.archlinux.org/packages/?sort=&q={{{s}}}&maintainer=&last_update=&flagged=&limit=50",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.apertium.org",
|
|
r: 0,
|
|
s: "Apertium",
|
|
sc: "Tools",
|
|
t: "apert-en-es",
|
|
u: "https://www.apertium.org/index.spa.html?dir=eng-spa&q={{{s}}}#translation",
|
|
},
|
|
{
|
|
d: "wiki.apertium.org",
|
|
r: 0,
|
|
s: "Appertium",
|
|
t: "apertium",
|
|
u: "http://wiki.apertium.org/w/index.php?title=Special:Search&search={{{s}}}&go=Go",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "ArcadePrehacks.com",
|
|
r: 0,
|
|
s: "Arcade PreHacks",
|
|
sc: "Games (general)",
|
|
t: "aph",
|
|
u: "http://ArcadePrehacks.com/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "apidock.com",
|
|
r: 0,
|
|
s: "APIDock - Rails",
|
|
sc: "Languages (ruby)",
|
|
t: "apidockrails",
|
|
u: "http://apidock.com/rails/search/quick?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "apidock.com",
|
|
r: 0,
|
|
s: "APIdock",
|
|
sc: "Languages (ruby)",
|
|
t: "apidockruby",
|
|
u: "http://apidock.com/ruby/search/quick?query={{{s}}} ",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "api.duckduckgo.com",
|
|
r: 3,
|
|
s: "DuckDuckGo API",
|
|
sc: "Search (DDG)",
|
|
t: "api",
|
|
u: "https://api.duckduckgo.com/?q={{{s}}}&o=json&pretty=1&no_html=1&no_redirect=1",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "apility.io",
|
|
r: 0,
|
|
s: "Apility.io",
|
|
sc: "Tools",
|
|
t: "apility",
|
|
u: "https://apility.io/search/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "academicprogress.in",
|
|
r: 0,
|
|
s: "Academic Progress India",
|
|
sc: "Academic",
|
|
t: "apin",
|
|
u: "https://academicprogress.in/library/search/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "careers.activision.com",
|
|
r: 0,
|
|
s: "Activision Careers",
|
|
sc: "Jobs",
|
|
t: "apinc",
|
|
u: "https://careers.activision.com/search-results?keywords={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "duckduckgo.com",
|
|
r: 0,
|
|
s: "API Platform",
|
|
sc: "Libraries/Frameworks",
|
|
t: "apiplatform",
|
|
u: "https://duckduckgo.com/?q={{{s}}}+site%3Aapi-platform.com&t=canonical&ia=web",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.amazon.com",
|
|
r: 0,
|
|
s: "Amazon Prime Instant Video",
|
|
sc: "Video",
|
|
t: "apiv",
|
|
u: "https://www.amazon.com/s/ref=nb_sb_noss?url=search-alias%3Dprime-instant-video&field-keywords={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "apps.evozi.com",
|
|
r: 21,
|
|
s: "APK Downloader",
|
|
sc: "Tools",
|
|
t: "apk",
|
|
u: "http://apps.evozi.com/apk-downloader/?id={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "apkpure.com",
|
|
r: 0,
|
|
s: "ApkPure",
|
|
sc: "Downloads (apps)",
|
|
t: "apkd",
|
|
u: "https://apkpure.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.archlinux.org",
|
|
r: 412,
|
|
s: "Arch Package Search",
|
|
sc: "Sysadmin (Arch)",
|
|
t: "apkg",
|
|
u: "https://www.archlinux.org/packages/?sort=&q={{{s}}}&maintainer=&flagged=",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.apkmirror.com",
|
|
r: 26,
|
|
s: "APKMirror",
|
|
sc: "Downloads (apps)",
|
|
t: "apkm",
|
|
u: "https://www.apkmirror.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.apkmirror.com",
|
|
r: 21,
|
|
s: "APK Mirror",
|
|
sc: "Downloads (apps)",
|
|
t: "apkmirror",
|
|
u: "http://www.apkmirror.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "apkpure.com",
|
|
r: 5,
|
|
s: "APKPure",
|
|
sc: "Downloads (apps)",
|
|
t: "apkpure",
|
|
u: "https://apkpure.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "scitation.aip.org",
|
|
r: 0,
|
|
s: "Applied Physics Letters",
|
|
sc: "Academic",
|
|
t: "apl",
|
|
u: "http://scitation.aip.org/search?value1={{{s}}}&option1=all",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "aplcart.info",
|
|
r: 6,
|
|
s: "APLcart",
|
|
sc: "Languages (other)",
|
|
t: "aplcart",
|
|
u: "https://aplcart.info/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "austin.bibliocommons.com",
|
|
r: 0,
|
|
s: "Austin Public Library",
|
|
sc: "Learning",
|
|
t: "aplib",
|
|
u: "https://austin.bibliocommons.com/v2/search?query={{{s}}}&searchType=smart",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.anime-planet.com",
|
|
r: 0,
|
|
s: "Animeplanet",
|
|
sc: "Movies",
|
|
t: "apln",
|
|
u: "https://www.anime-planet.com/anime/all?name={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "atom.io",
|
|
r: 0,
|
|
s: "Atom Packages",
|
|
sc: "Programming",
|
|
t: "apm",
|
|
u: "https://atom.io/packages/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.apmex.com",
|
|
r: 13,
|
|
s: "APMEX",
|
|
sc: "Online",
|
|
t: "apmex",
|
|
u: "http://www.apmex.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "wq.apnic.net",
|
|
r: 6,
|
|
s: "APNIC Whois",
|
|
sc: "Tools",
|
|
t: "apnic",
|
|
u: "https://wq.apnic.net/static/search.html?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "apod.nasa.gov",
|
|
r: 0,
|
|
s: "NASA - Astronomy Picture of the Day",
|
|
sc: "Images",
|
|
t: "apod",
|
|
u: "https://apod.nasa.gov/apod/ap{{{s}}}.html",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.apolloduck.com",
|
|
r: 0,
|
|
s: "Apollo Duck",
|
|
sc: "Search",
|
|
t: "apolloduck",
|
|
u: "http://www.apolloduck.com/search.phtml?search={{{s}}}&exact=1&sr=1&q=1",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "addons.palemoon.org",
|
|
r: 0,
|
|
s: "Pale Moon Add-ons",
|
|
sc: "Downloads (add-ons)",
|
|
t: "apo",
|
|
u: "https://addons.palemoon.org/search/?terms={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.com",
|
|
r: 6,
|
|
s: "Amazon Prime Pantry",
|
|
sc: "Online",
|
|
t: "app",
|
|
u: "https://www.amazon.com/s/search-alias%3Dpantry&field-keywords={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.appbrain.com",
|
|
r: 0,
|
|
s: "AppBrain",
|
|
sc: "Downloads",
|
|
t: "appbrain",
|
|
u: "http://www.appbrain.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "developer.appcelerator.com",
|
|
r: 0,
|
|
s: "Appcelerator API Docs",
|
|
sc: "Languages (other)",
|
|
t: "appcel",
|
|
u: "http://developer.appcelerator.com/apidoc/search/mobile/latest?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.winehq.org",
|
|
r: 0,
|
|
s: "WineHQ AppDB",
|
|
sc: "Downloads (apps)",
|
|
t: "appdb",
|
|
u: "http://www.winehq.org/search?cx=partner-pub-0971840239976722%3Aw9sqbcsxtyf&cof=FORID%3A10&ie=UTF-8&q={{{s}}}&siteurl=appdb.winehq.org%2F&ref=www.winehq.org%2Fsearch%2F%3Fcx%3Dpartner-pub-0971840239976722%253Aw9sqbcsxtyf%26cof%3DFORID%253A10%26ie%3DUTF-8%26q%3Dsomething&ss=674j114846j5",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "appear.in",
|
|
r: 0,
|
|
s: "Appear.in chat",
|
|
sc: "Social",
|
|
t: "appear",
|
|
u: "https://appear.in/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "code.google.com",
|
|
r: 0,
|
|
s: "App Engine Docs",
|
|
sc: "Programming",
|
|
t: "appengine",
|
|
u: "http://code.google.com/query/#p=appengine&q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "appexchange.salesforce.com",
|
|
r: 0,
|
|
s: "Salesforce.com AppExchange",
|
|
sc: "Downloads (apps)",
|
|
t: "appex",
|
|
u: "https://appexchange.salesforce.com/results?keywords={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.ah.nl",
|
|
r: 0,
|
|
s: "Albert Heijn",
|
|
sc: "Online",
|
|
t: "appie",
|
|
u: "https://www.ah.nl/zoeken?rq={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "search.appinn.com",
|
|
r: 0,
|
|
s: "\u5c0f\u4f17\u8f6f\u4ef6",
|
|
sc: "Blogs",
|
|
t: "appinn",
|
|
u: "https://search.appinn.com/cse/search?q={{{s}}}&s=5999676002387380177&source=www.appinn.com",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.apple.com",
|
|
r: 47,
|
|
s: "Apple",
|
|
sc: "Tech",
|
|
t: "apple",
|
|
u: "http://www.apple.com/search/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "applebase.net",
|
|
r: 0,
|
|
s: "AppleBase",
|
|
sc: "Blogs",
|
|
t: "applebase",
|
|
u: "https://applebase.net/Search.html?term={{{s}}}&cat=1",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.apple.com",
|
|
r: 0,
|
|
s: "Apple (Brasil)",
|
|
sc: "Companies",
|
|
t: "applebr",
|
|
u: "https://www.apple.com/br/search/{{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "hk.appledaily.com",
|
|
r: 0,
|
|
s: "Apple Daily (Hong Kong)",
|
|
sc: "Newspaper (intl)",
|
|
t: "appledaily",
|
|
u: "https://hk.appledaily.com/search/{{{s}}}?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "tw.appledaily.com",
|
|
r: 0,
|
|
s: "Apple Daily (Taiwan)",
|
|
sc: "Newspaper (intl)",
|
|
t: "appledailytw",
|
|
u: "https://tw.appledaily.com/search/result?querystrS={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "developer.apple.com",
|
|
r: 0,
|
|
s: "Apple Developer",
|
|
sc: "Languages (cocoa)",
|
|
t: "appledev",
|
|
u: "https://developer.apple.com/search/index.php?q={{{s}}} ",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "discussions.apple.com",
|
|
r: 0,
|
|
s: "Apple Discussions",
|
|
sc: "Companies",
|
|
t: "applediscuss",
|
|
u: "https://discussions.apple.com/search.jspa?peopleEnabled=true&userID=&containerType=&container=&spotlight=true&q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.applefritter.com",
|
|
r: 0,
|
|
s: "Applefritter",
|
|
sc: "Blogs",
|
|
t: "applefritter",
|
|
u: "https://www.applefritter.com/search/node/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "appleinsider.com",
|
|
r: 0,
|
|
s: "AppleInsider",
|
|
sc: "Blogs",
|
|
t: "appleinsider",
|
|
u: "http://appleinsider.com/search/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "maps.apple.com",
|
|
r: 14,
|
|
s: "Apple Maps",
|
|
sc: "Maps",
|
|
t: "applemaps",
|
|
u: "http://maps.apple.com/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "itunes.apple.com",
|
|
r: 11,
|
|
s: "Apple Music",
|
|
sc: "Music",
|
|
t: "applemusic",
|
|
u: "https://itunes.apple.com/search?term={{{s}}}&entity=musicTrack",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "applesold.com",
|
|
r: 0,
|
|
s: "Apple Realty",
|
|
sc: "Real Estate",
|
|
t: "applerealty",
|
|
u: "http://applesold.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "apple.stackexchange.com",
|
|
r: 0,
|
|
s: "Ask Different",
|
|
sc: "Reference",
|
|
t: "applese",
|
|
u: "http://apple.stackexchange.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "support.apple.com",
|
|
r: 0,
|
|
s: "Apple",
|
|
sc: "Downloads (software)",
|
|
t: "applesoftware",
|
|
u: "https://support.apple.com/en_US/downloads/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "support.apple.com",
|
|
r: 0,
|
|
s: "Apple Support",
|
|
sc: "Sysadmin",
|
|
t: "applesupport",
|
|
u: "http://support.apple.com/kb/index?page=search&product=&q={{{s}}}&src=support_site.kbase.search.searchresults",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "duckduckgo.com",
|
|
r: 0,
|
|
s: "Apple Trailers",
|
|
sc: "Movies",
|
|
t: "appletrailer",
|
|
u: "http://duckduckgo.com/?q=site:trailers.apple.com%20{{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "duckduckgo.com",
|
|
r: 3,
|
|
s: "Apple TV",
|
|
sc: "TV",
|
|
t: "appletv",
|
|
u: "https://duckduckgo.com/?q={{{s}}}%20site%3Atv.apple.com",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "appnr.com",
|
|
r: 0,
|
|
s: "appnr",
|
|
sc: "Downloads",
|
|
t: "appnr",
|
|
u: "http://appnr.com/search/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "programs.wikia.com",
|
|
r: 0,
|
|
s: "AppPedia",
|
|
sc: "Downloads (software)",
|
|
t: "apppedia",
|
|
u: "http://programs.wikia.com/wiki/Special:Search?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "appshopper.com",
|
|
r: 0,
|
|
s: "Appshopper",
|
|
sc: "Downloads",
|
|
t: "appshopper",
|
|
u: "http://appshopper.com/search/?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "appsliced.co",
|
|
r: 0,
|
|
s: "App Sliced",
|
|
sc: "Downloads (apps)",
|
|
t: "appsliced",
|
|
u: "http://appsliced.co/apps?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "apps.splunk.com",
|
|
r: 0,
|
|
s: "apps.splunk.com",
|
|
sc: "Companies",
|
|
t: "apps.splunk",
|
|
u: "http://apps.splunk.com/apps/#/search/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "",
|
|
r: 12,
|
|
s: "App Store on iTunes",
|
|
sc: "Tech",
|
|
t: "appstore",
|
|
u: "/?q=site%3Aitunes.apple.com%2Fus%2Fapp%2F+{{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.appvv.com",
|
|
r: 0,
|
|
s: "AppVV",
|
|
sc: "Downloads (apps)",
|
|
t: "appvv",
|
|
u: "http://www.appvv.com/search.htm?search={{{s}}}&device=1",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.april.org",
|
|
r: 0,
|
|
s: "April",
|
|
sc: "Specialty",
|
|
t: "april",
|
|
u: "https://www.april.org/search/node/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "aprohirdetesingyen.hu",
|
|
r: 0,
|
|
s: "aprohirdetesingyen.hu",
|
|
sc: "Online (marketplace)",
|
|
t: "apro",
|
|
u: "https://aprohirdetesingyen.hu/osszes-hirdetes/kereses--{{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "aprs.fi",
|
|
r: 0,
|
|
s: "aprs.fi",
|
|
sc: "Tools",
|
|
t: "aprsfi",
|
|
u: "http://aprs.fi/#!mt=roadmap&z=11&call=a%2F{{{s}}}&timerange=3600&tail=3600",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "journals.aps.org",
|
|
r: 8,
|
|
s: "APS Journals",
|
|
sc: "Academic",
|
|
t: "aps",
|
|
u: "http://journals.aps.org/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.apt-browse.org",
|
|
r: 0,
|
|
s: "Apt-Browse",
|
|
sc: "Sysadmin",
|
|
t: "aptbrowse",
|
|
u: "https://www.apt-browse.org/search/?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "en.aptoide.com",
|
|
r: 0,
|
|
s: "Aptoide.com",
|
|
sc: "Downloads (apps)",
|
|
t: "aptoide",
|
|
u: "https://en.aptoide.com/search?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "packages.ubuntu.com",
|
|
r: 91,
|
|
s: "Ubuntu Packages Search",
|
|
sc: "Sysadmin (Ubuntu)",
|
|
t: "apt",
|
|
u: "https://packages.ubuntu.com/search?keywords={{{s}}}&searchon=all&suite=all§ion=all",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.amazon.de",
|
|
r: 6,
|
|
s: "Amazon Prime Video Germany",
|
|
sc: "Video",
|
|
t: "apvde",
|
|
u: "https://www.amazon.de/s?k={{{s}}}&i=instant-video",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.aqasha.de",
|
|
r: 0,
|
|
s: "aqasha",
|
|
sc: "Online",
|
|
t: "aqasha",
|
|
u: "https://www.aqasha.de/search/result?term={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "aqicn.org",
|
|
r: 0,
|
|
s: "Real-time Air Quality Index (AQI) ",
|
|
sc: "Weather",
|
|
t: "aqicn",
|
|
u: "http://aqicn.org/city/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "veriforcetactical.com",
|
|
r: 0,
|
|
s: "Veriforce Tactical",
|
|
sc: "Online",
|
|
t: "ar-15",
|
|
u: "https://veriforcetactical.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "translate.google.com",
|
|
r: 0,
|
|
s: "Google Translate",
|
|
sc: "Google",
|
|
t: "ar2en",
|
|
u: "https://translate.google.com/#ar/en/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.perseus.tufts.edu",
|
|
r: 0,
|
|
s: "Arabic dictionary",
|
|
sc: "Reference (words intl)",
|
|
t: "arabic",
|
|
u: "http://www.perseus.tufts.edu/hopper/morph?l={{{s}}}&la=ar",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.arabnews.com",
|
|
r: 7,
|
|
s: "Arab News",
|
|
sc: "Newspaper (intl)",
|
|
t: "arabnews",
|
|
u: "http://www.arabnews.com/search/google/{{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.ara.cat",
|
|
r: 4,
|
|
s: "Diari Ara",
|
|
sc: "Newspaper",
|
|
t: "ara",
|
|
u: "http://www.ara.cat/cercador/?text={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.arageek.com",
|
|
r: 0,
|
|
s: "Arageek",
|
|
sc: "Blogs",
|
|
t: "arageek",
|
|
u: "http://www.arageek.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "allrecipes.com",
|
|
r: 25,
|
|
s: "all recipes",
|
|
sc: "Food",
|
|
t: "ar",
|
|
u: "http://allrecipes.com/search/default.aspx?qt=k&wt={{{s}}}&rt=r&origin=Recipe%20Search%20Results",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.aramex.com",
|
|
r: 0,
|
|
s: "Aramex Tracking",
|
|
sc: "Tracking",
|
|
t: "aramex",
|
|
u: "https://www.aramex.com/track-results-multiple.aspx?ShipmentNumber={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.almaany.com",
|
|
r: 0,
|
|
s: "almaany.com",
|
|
sc: "Reference (words intl)",
|
|
t: "ar-ar",
|
|
u: "http://www.almaany.com/ar/dict/ar-ar/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "ruby.libhunt.com",
|
|
r: 0,
|
|
s: "Awesome Ruby (LibHun)",
|
|
sc: "Programming",
|
|
t: "arb",
|
|
u: "https://ruby.libhunt.com/search?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "con.arbeitsagentur.de",
|
|
r: 0,
|
|
s: "Agentur f\u00fcr Arbeit",
|
|
sc: "Search",
|
|
t: "arbeitsagentur",
|
|
u: "https://con.arbeitsagentur.de/prod/jobboerse/jobsuche-ui/?VOLLTEXT={{{s}}}&FCT.ANGEBOTSART=ARBEIT&FCT.AKTUALITAET=100&FCT.BEHINDERUNG=AUS&page=1&size=10&sort=Relevanz&s=5",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "wiki.arcadeotaku.com",
|
|
r: 0,
|
|
s: "Arcade Otaku Wiki",
|
|
sc: "Reference",
|
|
t: "arcadeotaku",
|
|
u: "https://wiki.arcadeotaku.com/index.php?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.esri.com",
|
|
r: 0,
|
|
s: "ArcGIS Blogs",
|
|
sc: "Blogs",
|
|
t: "arcblog",
|
|
u: "https://www.esri.com/en-us/search/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "developers.arcgis.com",
|
|
r: 0,
|
|
s: "Arcgis Developers",
|
|
sc: "Libraries/Frameworks",
|
|
t: "arcdev",
|
|
u: "https://developers.arcgis.com/search/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "doc.arcgis.com",
|
|
r: 0,
|
|
s: "ArcGIS Documentation",
|
|
sc: "Companies",
|
|
t: "arcdoc",
|
|
u: "https://doc.arcgis.com/search/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.arcgames.com",
|
|
r: 0,
|
|
s: "ArcGames",
|
|
sc: "Games (specific)",
|
|
t: "arcgames",
|
|
u: "http://www.arcgames.com/en/games/all-games/query/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.arcgis.com",
|
|
r: 0,
|
|
s: "ArcGIS Online",
|
|
sc: "Maps",
|
|
t: "arcgis",
|
|
u: "http://www.arcgis.com/home/search.html?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "resources.arcgis.com",
|
|
r: 0,
|
|
s: "ArcGIS Resource Center",
|
|
sc: "Programming",
|
|
t: "arcgisres",
|
|
u: "http://resources.arcgis.com/content/search-result?searchKeyWord={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "heavenlyarchangels.wordpress.com",
|
|
r: 0,
|
|
s: "Heavenly Archangels",
|
|
sc: "Topical",
|
|
t: "archangels",
|
|
u: "https://heavenlyarchangels.wordpress.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "wiki.archlinux.org",
|
|
r: 3840,
|
|
s: "ArchLinux Wiki",
|
|
sc: "Sysadmin (Arch)",
|
|
t: "arch",
|
|
u: "https://wiki.archlinux.org/index.php?title=Special%3ASearch&search={{{s}}}&go=Go",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "aur.archlinux.org",
|
|
r: 12,
|
|
s: "ArchLinux User Repository",
|
|
sc: "Languages (other)",
|
|
t: "archaur",
|
|
u: "https://aur.archlinux.org/packages.php?O=0&K={{{s}}}&do_Search=Go",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "bugs.archlinux.org",
|
|
r: 0,
|
|
s: "ArchLinux Bugtracker",
|
|
sc: "Sysadmin (Arch)",
|
|
t: "archbugs",
|
|
u: "https://bugs.archlinux.org/index.php?string={{{s}}}&project=0",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.archchinese.com",
|
|
r: 0,
|
|
s: "Arch Chinese",
|
|
sc: "Reference (words intl)",
|
|
t: "archch",
|
|
u: "http://www.archchinese.com/chinese_english_dictionary.html?find={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.archchinese.com",
|
|
r: 0,
|
|
s: "Arch Chinese",
|
|
sc: "Tools",
|
|
t: "archchine",
|
|
u: "http://www.archchinese.com/chinese_english_dictionary.html?find={{{s}}} ",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.archdaily.com",
|
|
r: 0,
|
|
s: "ArchDaily",
|
|
sc: "Specialty",
|
|
t: "archdaily",
|
|
u: "https://www.archdaily.com/search/all?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "wiki.archlinux.de",
|
|
r: 0,
|
|
s: "wiki.archlinux.de",
|
|
sc: "Sysadmin (Arch)",
|
|
t: "archde",
|
|
u: "https://wiki.archlinux.de/index.php?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "bbs.archlinux.org",
|
|
r: 6,
|
|
s: "Arch Linux Forums",
|
|
sc: "Sysadmin (Arch)",
|
|
t: "archforums",
|
|
u: "https://bbs.archlinux.org/search.php?action=search&keywords={{{s}}}&author=&search_in=0&sort_by=0&sort_dir=DESC&show_as=topics&search=Submit",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "wiki.archlinux.fr",
|
|
r: 0,
|
|
s: "archlinux.fr",
|
|
sc: "Sysadmin (Arch)",
|
|
t: "archfr",
|
|
u: "http://wiki.archlinux.fr/index.php?title=Sp%C3%A9cial%3ARecherche&profile=default&search={{{s}}}&fulltext=Search",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "catalogue.biu-toulouse.fr",
|
|
r: 0,
|
|
s: "Archipel",
|
|
sc: "Academic",
|
|
t: "archi",
|
|
u: "http://catalogue.biu-toulouse.fr/ipac20/ipac.jsp?profile=http://catalogue.biu-toulouse.fr/ipac20/ipac.jsp?profile=http://catalogue.biu-toulouse.fr/ipac20/ipac.jsp?profile=http://catalogue.biu-toulouse.fr/ipac20/ipac.jsp?profile=?q={{{s}}}:",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "catalogue.biu-toulouse.fr",
|
|
r: 0,
|
|
s: "Archipel",
|
|
sc: "Academic",
|
|
t: "archipel",
|
|
u: "http://catalogue.biu-toulouse.fr/ipac20/ipac.jsp?menu=search&aspect=subtab26&npp=10&ipp=20&spp=20&profile=sicd&ri=&index=.GK&term={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "univtoulouse.summon.serialssolutions.com",
|
|
r: 0,
|
|
s: "Archipel plus",
|
|
sc: "Academic",
|
|
t: "archiplus",
|
|
u: "http://univtoulouse.summon.serialssolutions.com/search?s.q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "archived.moe",
|
|
r: 7,
|
|
s: "Archived.Moe",
|
|
sc: "Misc",
|
|
t: "archivedmoe",
|
|
u: "https://archived.moe/_/search/text/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "web.archive.org",
|
|
r: 57,
|
|
s: "Wayback Machine",
|
|
sc: "Tools (URLs)",
|
|
t: "archived",
|
|
u: "https://web.archive.org/web/*/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "archive.org",
|
|
r: 845,
|
|
s: "Internet ",
|
|
sc: "Tools",
|
|
t: "archive",
|
|
u: "https://archive.org/search.php?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "archive.is",
|
|
r: 252,
|
|
s: "Archive.is",
|
|
sc: "Tools (URLs)",
|
|
t: "archiveis",
|
|
u: "http://archive.is/search/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.archiveteam.org",
|
|
r: 0,
|
|
s: "Archive Team Wiki",
|
|
sc: "Tools",
|
|
t: "archiveteam",
|
|
u: "http://www.archiveteam.org/index.php?title=Special%3ASearch&search={{{s}}}&fulltext=Search",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "archive.org",
|
|
r: 0,
|
|
s: "Internet Archive TV News",
|
|
sc: "Broadcast",
|
|
t: "archivetv",
|
|
u: "https://archive.org/details/tv?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "web.archive.org",
|
|
r: 23,
|
|
s: "Archive.org",
|
|
sc: "Tools",
|
|
t: "archiveweb",
|
|
u: "https://web.archive.org/web/*/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "wiki.archlinux.jp",
|
|
r: 49,
|
|
s: "ArchWikiJP",
|
|
sc: "Sysadmin (Arch)",
|
|
t: "archjp",
|
|
u: "https://wiki.archlinux.jp/index.php?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "bbs.archlinux.org",
|
|
r: 26,
|
|
s: "Archlinux Forums",
|
|
sc: "Languages (other)",
|
|
t: "archlinux",
|
|
u: "https://bbs.archlinux.org/search.php?action=search&keywords={{{s}}}&author=&search_in=0&sort_by=0&sort_dir=DESC&show_as=topics&search=Submit",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "wiki.archlinux.fr",
|
|
r: 0,
|
|
s: "Wiki Fran\u00e7ais Archlinux",
|
|
sc: "Sysadmin (Arch)",
|
|
t: "archlinuxfr",
|
|
u: "https://wiki.archlinux.fr/index.php?title=Sp\u00e9cial%3ARecherche&profile=default&fulltext=Search&search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "wiki.archlinux.org",
|
|
r: 0,
|
|
s: "Arch Linux",
|
|
sc: "Sysadmin (Arch)",
|
|
t: "archlinuxit",
|
|
u: "https://wiki.archlinux.org/index.php?title=Special%3ASearch&search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "man.archlinux.org",
|
|
r: 282,
|
|
s: "Arch manual pages",
|
|
sc: "Sysadmin (man)",
|
|
t: "archman",
|
|
u: "https://man.archlinux.org/search?q={{{s}}}&go=Go",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.archlinux.org",
|
|
r: 58,
|
|
s: "ArchLinux Package Search",
|
|
sc: "Sysadmin (Arch)",
|
|
t: "archpackages",
|
|
u: "https://www.archlinux.org/packages/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.archlinux.org",
|
|
r: 926,
|
|
s: "Arch Linux Packages",
|
|
sc: "Sysadmin (Arch)",
|
|
t: "archpkg",
|
|
u: "https://www.archlinux.org/packages/?sort=&q={{{s}}}&maintainer=&flagged=",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "wiki.archlinux.org",
|
|
r: 0,
|
|
s: "archlinux wiki pl",
|
|
sc: "Sysadmin (Arch)",
|
|
t: "archpl",
|
|
u: "https://wiki.archlinux.org/index.php/{{{s}}} _(Polski)",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "wiki.archlinux.org",
|
|
r: 902,
|
|
s: "Arch Linux Wiki",
|
|
sc: "Sysadmin (Arch)",
|
|
t: "archwiki",
|
|
u: "https://wiki.archlinux.org/index.php?search={{{s}}}&title=Special%3ASearch&go=Go",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.ardmediathek.de",
|
|
r: 68,
|
|
s: "ARD Mediathek",
|
|
sc: "Video",
|
|
t: "ard",
|
|
u: "https://www.ardmediathek.de/ard/search/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.glyphweb.com",
|
|
r: 0,
|
|
s: "The Encyclopedia of ARDA",
|
|
sc: "Reference",
|
|
t: "arda",
|
|
u: "http://www.glyphweb.com/arda/search.asp?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.ardmoor.co.uk",
|
|
r: 0,
|
|
s: "ArdMoor",
|
|
sc: "Online",
|
|
t: "ardmoor",
|
|
u: "https://www.ardmoor.co.uk/search/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "arduino.stackexchange.com",
|
|
r: 0,
|
|
s: "Arduino Stack Exchange",
|
|
sc: "Programming",
|
|
t: "arduino",
|
|
u: "http://arduino.stackexchange.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "duckduckgo.com",
|
|
r: 0,
|
|
s: "Arduino Reference",
|
|
sc: "Languages (c++)",
|
|
t: "arduinoreference",
|
|
u: "https://duckduckgo.com/?q={{{s}}}+site%3Aarduino.cc&ia=web",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "discuss.area51.stackexchange.com",
|
|
r: 0,
|
|
s: "Area51",
|
|
sc: "Reference",
|
|
t: "area51",
|
|
u: "http://discuss.area51.stackexchange.com/search?q= {{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "haku.yle.fi",
|
|
r: 6,
|
|
s: "YLE Areena",
|
|
sc: "Video",
|
|
t: "areena",
|
|
u: "http://haku.yle.fi/?q={{{s}}}&category=Areena",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.are.na",
|
|
r: 0,
|
|
s: "Are.na",
|
|
sc: "General",
|
|
t: "arena",
|
|
u: "https://www.are.na/search/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.almaany.com",
|
|
r: 0,
|
|
s: "Almaany English-Arabic",
|
|
sc: "Search",
|
|
t: "ar-en",
|
|
u: "https://www.almaany.com/ar/dict/ar-en/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "duckduckgo.com",
|
|
r: 4,
|
|
s: "ar15.com",
|
|
sc: "Social",
|
|
t: "arf",
|
|
u: "https://duckduckgo.com/?q={{{s}}}+site%3Aar15.com&ia=web",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.argep.hu",
|
|
r: 0,
|
|
s: "\u00c1rG\u00e9p",
|
|
sc: "Search (non-US)",
|
|
t: "argep",
|
|
u: "http://www.argep.hu/main.aspx?suche={{{s}}}&x=0&y=0",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.argos.co.uk",
|
|
r: 33,
|
|
s: "http://www.argos.co.uk",
|
|
sc: "Online",
|
|
t: "argos",
|
|
u: "http://www.argos.co.uk/search/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.argos.ie",
|
|
r: 0,
|
|
s: "Argos Ireland",
|
|
sc: "Big box/department",
|
|
t: "argosie",
|
|
u: "http://www.argos.ie/webapp/wcs/stores/servlet/Search?storeId=10152&catalogId=14551&langId=111&searchTerms={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.speakinglatino.com",
|
|
r: 0,
|
|
s: "Speaking Latino",
|
|
sc: "Reference",
|
|
t: "argot",
|
|
u: "http://www.speakinglatino.com/?s={{{s}}}&advanced=0&search_type=&posts_country=&posts_category=&words_country=&words_category=&words_letter=CHOOSE+A+STARTING+LETTER&all_country=&all_letter=CHOOSE+A+STARTING+LETTER",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.aria.co.uk",
|
|
r: 0,
|
|
s: "Aria",
|
|
sc: "Tech",
|
|
t: "aria",
|
|
u: "http://www.aria.co.uk/Products?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "whois.arin.net",
|
|
r: 16,
|
|
s: "ARIN Whois",
|
|
sc: "Sysadmin (network)",
|
|
t: "arin",
|
|
u: "http://whois.arin.net/rest/nets;q={{{s}}}?showDetails=true&showARIN=false&ext=netref2",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "ark.intel.com",
|
|
r: 48,
|
|
s: "Intel Processor Specification",
|
|
sc: "Companies",
|
|
t: "ark",
|
|
u: "https://ark.intel.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "ark.gamepedia.com",
|
|
r: 0,
|
|
s: "Ark Gamepedia",
|
|
sc: "Games (specific)",
|
|
t: "arkpedia",
|
|
u: "http://ark.gamepedia.com/index.php?search={{{s}}}&title=Special%3ASearch&go=Go",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "ark.gamepedia.com",
|
|
r: 0,
|
|
s: "Ark official Wiki",
|
|
sc: "Games (specific)",
|
|
t: "arkwiki",
|
|
u: "http://ark.gamepedia.com/index.php?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "aynrandlexicon.com",
|
|
r: 0,
|
|
s: "The Ayn Rand Lexicon",
|
|
sc: "Reference",
|
|
t: "arl",
|
|
u: "http://aynrandlexicon.com/searchresults/index.html?cx=013104633629966810561%3Ag5jt9ka8qre&cof=FORID%3A11&q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.armadeus.com",
|
|
r: 0,
|
|
s: "Armadeus Project",
|
|
sc: "Programming",
|
|
t: "armadeus",
|
|
u: "http://www.armadeus.com/wiki/index.php?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "armorgames.com",
|
|
r: 0,
|
|
s: "armorgames",
|
|
sc: "Games (general)",
|
|
t: "armorgames",
|
|
u: "http://armorgames.com/search/games?type=games&q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "armswiki.org",
|
|
r: 0,
|
|
s: "ARMS Institute",
|
|
sc: "Games (specific)",
|
|
t: "arms",
|
|
u: "https://armswiki.org/wiki/index.php?search={{{s}}}&title=Special%3ASearch&go=Go",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.armslist.com",
|
|
r: 0,
|
|
s: "ARMSLIST",
|
|
sc: "Online (marketplace)",
|
|
t: "armslist",
|
|
u: "https://www.armslist.com/classifieds/search?search={{{s}}}&location=usa&category=all&posttype=7&ships=",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "azure.microsoft.com",
|
|
r: 0,
|
|
s: "Azure Quickstart Templates",
|
|
sc: "Programming",
|
|
t: "armtemp",
|
|
u: "https://azure.microsoft.com/de-de/resources/templates/?term={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.arnoldbusck.dk",
|
|
r: 0,
|
|
s: "Arnold Busck",
|
|
sc: "Online (marketplace)",
|
|
t: "arnoldbusck",
|
|
u: "https://www.arnoldbusck.dk/soeg?s={{{s}}}&cid=alle",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "secure.arnzenarms.com",
|
|
r: 0,
|
|
s: "Arnzen Arms",
|
|
sc: "Online",
|
|
t: "arnzenarms",
|
|
u: "https://secure.arnzenarms.com/catalog-search?fulltext={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "ffxiv.gamerescape.com",
|
|
r: 27,
|
|
s: "GamerEscape",
|
|
sc: "Games (specific)",
|
|
t: "arr",
|
|
u: "http://ffxiv.gamerescape.com/wiki/Special:Search?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.arrow.com",
|
|
r: 0,
|
|
s: "Arrow Electronics",
|
|
sc: "Tech",
|
|
t: "arrow",
|
|
u: "https://www.arrow.com/en/products/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "arrow.wikia.com",
|
|
r: 0,
|
|
s: "Arrowverse Wikia",
|
|
sc: "TV",
|
|
t: "arrow-wikia",
|
|
u: "http://arrow.wikia.com/wiki/Special:Search?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "arstechnica.com",
|
|
r: 192,
|
|
s: "Ars Technica",
|
|
sc: "Blogs",
|
|
t: "ars",
|
|
u: "https://arstechnica.com/search/?ie=UTF-8&q={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "arstechnica.com",
|
|
r: 3,
|
|
s: "Ars Technica",
|
|
sc: "Specialty",
|
|
t: "arstechnica",
|
|
u: "https://arstechnica.com/search/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "arstechnica.co.uk",
|
|
r: 0,
|
|
s: "Ars Technica UK",
|
|
sc: "Blogs",
|
|
t: "arstechnicauk",
|
|
u: "http://arstechnica.co.uk/search/?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "arstechnica.co.uk",
|
|
r: 0,
|
|
s: "Ars Technica UK",
|
|
sc: "Blogs",
|
|
t: "arsuk",
|
|
u: "http://arstechnica.co.uk/search/?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.artdiscount.co.uk",
|
|
r: 0,
|
|
s: "ArtDiscount",
|
|
sc: "Online",
|
|
t: "artd",
|
|
u: "https://www.artdiscount.co.uk/catalogsearch/result/?cat=0&q={{{s}}} ",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.artdiscount.co.uk",
|
|
r: 0,
|
|
s: "ArtDiscount",
|
|
sc: "Online",
|
|
t: "artdiscount",
|
|
u: "https://www.artdiscount.co.uk/catalogsearch/result/?cat=0&q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.arte.tv",
|
|
r: 45,
|
|
s: "Arte TV",
|
|
sc: "TV",
|
|
t: "arte",
|
|
u: "https://www.arte.tv/fr/search/?q={{{s}}}&page=1",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.artfire.com",
|
|
r: 0,
|
|
s: "ArtFire",
|
|
sc: "Online (marketplace)",
|
|
t: "artfire",
|
|
u: "http://www.artfire.com/browse/?term={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.aparatorul.md",
|
|
r: 3,
|
|
s: "https://www.aparatorul.md",
|
|
sc: "Online",
|
|
t: "art",
|
|
u: "https://www.aparatorul.md/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "artifact.gamepedia.com",
|
|
r: 0,
|
|
s: "Artifact Wiki",
|
|
sc: "Games (specific)",
|
|
t: "artifact",
|
|
u: "https://artifact.gamepedia.com/index.php?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.artcyclopedia.com",
|
|
r: 0,
|
|
s: "artcyclopedia.com",
|
|
sc: "Misc",
|
|
t: "artist",
|
|
u: "http://www.artcyclopedia.com/scripts/tsearch.pl?type=1&t={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "collections.artsmia.org",
|
|
r: 0,
|
|
s: "The Collection at the Minneapois Insitute of Arts",
|
|
sc: "Reference (fun)",
|
|
t: "artsmia",
|
|
u: "https://collections.artsmia.org/index.php?page=search#query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.artstation.com",
|
|
r: 101,
|
|
s: "Artstation",
|
|
sc: "Design",
|
|
t: "artstation",
|
|
u: "https://www.artstation.com/search?q={{{s}}}&sorting=recent",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "library.artstor.org",
|
|
r: 0,
|
|
s: "ArtStor",
|
|
sc: "Reference",
|
|
t: "artstor",
|
|
u: "https://library.artstor.org/#/search/{{{s}}};page=1;size=48",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.arturogoga.com",
|
|
r: 0,
|
|
s: "arturogoga.com",
|
|
sc: "Blogs",
|
|
t: "arturogoga",
|
|
u: "https://www.arturogoga.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.artcyclopedia.com",
|
|
r: 0,
|
|
s: "artcyclopedia.com",
|
|
sc: "Misc",
|
|
t: "artwork",
|
|
u: "http://www.artcyclopedia.com/scripts/tsearch.pl?t={{{s}}}&type=2",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.arukereso.hu",
|
|
r: 14,
|
|
s: "\u00c1rukeres\u0151",
|
|
sc: "Online",
|
|
t: "aru",
|
|
u: "https://www.arukereso.hu/CategorySearch.php?st={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "community.arubanetworks.com",
|
|
r: 0,
|
|
s: "Aruba Airheads Community",
|
|
sc: "Sysadmin (network)",
|
|
t: "aruba",
|
|
u: "https://community.arubanetworks.com/t5/forums/searchpage/tab/message?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.arukereso.hu",
|
|
r: 38,
|
|
s: "Arukereso",
|
|
sc: "Online (intl)",
|
|
t: "arukereso",
|
|
u: "https://www.arukereso.hu/CategorySearch.php?st={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "arxiv.org",
|
|
r: 20,
|
|
s: "arXiv.org",
|
|
sc: "Academic",
|
|
t: "arx",
|
|
u: "http://arxiv.org/search?query={{{s}}}&searchtype=all",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "arxiv.org",
|
|
r: 258,
|
|
s: "arXiv",
|
|
sc: "Reference (science)",
|
|
t: "arxiv",
|
|
u: "http://arxiv.org/search?query={{{s}}}&searchtype=all",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "sysadmin.libhunt.com",
|
|
r: 0,
|
|
s: "Awesome SysAdmin (LibHunt)",
|
|
sc: "Sysadmin",
|
|
t: "asa",
|
|
u: "https://sysadmin.libhunt.com/search?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "sitesearch.asahi.com",
|
|
r: 0,
|
|
s: "\u671d\u65e5\u65b0\u805e",
|
|
sc: "Newspaper (intl)",
|
|
t: "asahi",
|
|
u: "http://sitesearch.asahi.com/.cgi/sitesearch/sitesearch.pl?Keywords={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "smile.amazon.com",
|
|
r: 218,
|
|
s: "Amazon Smile",
|
|
sc: "Online",
|
|
t: "as",
|
|
u: "http://smile.amazon.com/s?url=search-alias%3Daps&field-keywords={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "app.asana.com",
|
|
r: 3,
|
|
s: "Asana",
|
|
sc: "Tools",
|
|
t: "asana",
|
|
u: "https://app.asana.com/0/search/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.asap-supplies.com",
|
|
r: 0,
|
|
s: "A.S.A.P. Supplies",
|
|
sc: "Online",
|
|
t: "asapsupplies",
|
|
u: "https://www.asap-supplies.com/catalogsearch/result/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "astrobites.org",
|
|
r: 0,
|
|
s: "astrobites",
|
|
sc: "Academic",
|
|
t: "asb",
|
|
u: "https://astrobites.org/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.ascent.co.nz",
|
|
r: 0,
|
|
s: "Ascent",
|
|
sc: "Online",
|
|
t: "ascent",
|
|
u: "https://www.ascent.co.nz/search.aspx?query={{{s}}}&sortBy=products",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "ascl.net",
|
|
r: 0,
|
|
s: " ASCL.net - Astrophysics Source Code Library",
|
|
sc: "Academic",
|
|
t: "ascl",
|
|
u: "http://ascl.net/code/search/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "groceries.asda.com",
|
|
r: 8,
|
|
s: "Asda Groceries",
|
|
sc: "Big box/department",
|
|
t: "asda",
|
|
u: "https://groceries.asda.com/asda-webstore/landing/home.shtml#/search/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "smile.amazon.de",
|
|
r: 32,
|
|
s: "Amazon Smile Deutschland",
|
|
sc: "Online (marketplace)",
|
|
t: "asd",
|
|
u: "https://smile.amazon.de/s?url=search-alias%3Daps&field-keywords={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "smile.amazon.de",
|
|
r: 0,
|
|
s: "AmazonSmile Deutschland",
|
|
sc: "Online (intl)",
|
|
t: "asde",
|
|
u: "https://smile.amazon.de/s/field-keywords={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "asearchoficeandfire.com",
|
|
r: 0,
|
|
s: "A Search of Ice and Fire",
|
|
sc: "Books",
|
|
t: "asearchoficeandfire",
|
|
u: "https://asearchoficeandfire.com/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "peer.asee.org",
|
|
r: 0,
|
|
s: "Papers on Engineering Education Repository (ASEE PEER)",
|
|
sc: "Academic",
|
|
t: "asee",
|
|
u: "https://peer.asee.org/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "smile.amazon.de",
|
|
r: 22,
|
|
s: "Amazon Smile (Germany)",
|
|
sc: "Online",
|
|
t: "asg",
|
|
u: "https://smile.amazon.de/s/?field-keywords={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "ashadidi.com",
|
|
r: 0,
|
|
s: "https://ashadidi.com",
|
|
sc: "Startups",
|
|
t: "asha",
|
|
u: "https://ashadidi.com/search/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "selfhosted.libhunt.com",
|
|
r: 0,
|
|
s: "Awesome Selfhosted",
|
|
sc: "Tools",
|
|
t: "ash",
|
|
u: "https://selfhosted.libhunt.com/search?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "asianwiki.com",
|
|
r: 6,
|
|
s: "AsianWiki",
|
|
sc: "Movies",
|
|
t: "asianwiki",
|
|
u: "http://asianwiki.com/index.php?title=Special%3ASearch&search={{{s}}}&fulltext=Search",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.asihablamos.com",
|
|
r: 3,
|
|
s: "As\u00edHablamos",
|
|
sc: "Reference (words intl)",
|
|
t: "asi",
|
|
u: "http://www.asihablamos.com/www/significado/palabra/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "asiavape.co",
|
|
r: 0,
|
|
s: "AsiaVape.co",
|
|
sc: "Tech",
|
|
t: "asiavape",
|
|
u: "https://asiavape.co/?s={{{s}}}&post_type=product",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.asics.com",
|
|
r: 0,
|
|
s: "asics",
|
|
sc: "Online (marketplace)",
|
|
t: "asics",
|
|
u: "http://www.asics.com/us/en-us/search?text={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.com",
|
|
r: 0,
|
|
s: "Amazon (ASIN)",
|
|
sc: "Online",
|
|
t: "asin",
|
|
u: "https://www.amazon.com/dp/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.askapatient.com",
|
|
r: 0,
|
|
s: "AskaPatient.com",
|
|
sc: "Health",
|
|
t: "askapatient",
|
|
u: "http://www.askapatient.com/searchresults.asp?searchField={{{s}}} ",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.ask.com",
|
|
r: 0,
|
|
s: "Ask.com",
|
|
sc: "Social",
|
|
t: "ask",
|
|
u: "http://www.ask.com/web?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "apple.stackexchange.com",
|
|
r: 0,
|
|
s: "Ask Different",
|
|
sc: "Social",
|
|
t: "askd",
|
|
u: "http://apple.stackexchange.com/search?{{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "support.f5.com",
|
|
r: 0,
|
|
s: "AskF5 (support.f5.com)",
|
|
sc: "Sysadmin (network)",
|
|
t: "askf5",
|
|
u: "https://support.f5.com/kb/en-us/search.res.html?productList=big-ip%2Cbc%2Cfp%2C3-dns%2Clc%2Cts%2Cwj%2Cwa_5_x%2Csam%2Clinerate-eol&versionList=all%2C&searchType=basic&isFromGSASearch=false&query={{{s}}}&site=support_external&client=support-f5-com&q={{{s}}}&prodName=ALL&prodVersText=&docTypeName=ALL&includeArchived=false&submit_form=&product=all&eolProducts=all&documentType=all",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "ask.fedoraproject.org",
|
|
r: 0,
|
|
s: "Ask Fedora",
|
|
sc: "Sysadmin (Fedora)",
|
|
t: "askfedora",
|
|
u: "https://ask.fedoraproject.org/en/questions/scope:all/sort:activity-desc/page:1/query:{{{s}}}/",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "askimam.org",
|
|
r: 0,
|
|
s: "ASK IMAM",
|
|
sc: "Reference (religion)",
|
|
t: "askimam",
|
|
u: "http://askimam.org/public/processsearch/Question.keywords:{{{s}}}/Question.type:1",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "ca.askmen.com",
|
|
r: 0,
|
|
s: "AskMen",
|
|
sc: "Aggregators",
|
|
t: "askmen",
|
|
u: "http://ca.askmen.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.reddit.com",
|
|
r: 0,
|
|
s: "/r/AskReddit",
|
|
sc: "Misc",
|
|
t: "askreddit",
|
|
u: "https://www.reddit.com/r/AskReddit/search?q={{{s}}}&restrict_sr=on&sort=relevance&t=all",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.asksteem.com",
|
|
r: 0,
|
|
s: "AskSteem",
|
|
sc: "Blogs",
|
|
t: "asksteem",
|
|
u: "https://www.asksteem.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.asksutra.com",
|
|
r: 0,
|
|
s: "Ask Sutra",
|
|
sc: "Learning",
|
|
t: "asksutra",
|
|
u: "http://www.asksutra.com/en/serp.php?cx=006191677038902776655%3Akobzooodbpy&cof=FORID%3A11&q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "askubuntu.com",
|
|
r: 0,
|
|
s: "Ask Ubuntu",
|
|
sc: "Sysadmin (Ubuntu)",
|
|
t: "asku",
|
|
u: "http://askubuntu.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "askubuntu.com",
|
|
r: 0,
|
|
s: "Ask Ubuntu",
|
|
sc: "Blogs",
|
|
t: "askubnt",
|
|
u: "http://askubuntu.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "askubuntu.com",
|
|
r: 0,
|
|
s: "Ask Ubuntu",
|
|
sc: "Programming",
|
|
t: "askubuntu",
|
|
u: "http://askubuntu.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.askvg.com",
|
|
r: 0,
|
|
s: "AskVG",
|
|
sc: "Blogs",
|
|
t: "askvg",
|
|
u: "http://www.askvg.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "smile.amazon.com",
|
|
r: 0,
|
|
s: "Amazon Smile",
|
|
sc: "Online",
|
|
t: "asm",
|
|
u: "http://smile.amazon.com/s/?field-keywords={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.asthamobileshop.ml",
|
|
r: 0,
|
|
s: "Astha Mobile Shop",
|
|
sc: "Online",
|
|
t: "asmmrg",
|
|
u: "https://www.asthamobileshop.ml/_/search?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "smile.amazon.co.uk",
|
|
r: 5,
|
|
s: "Amazon Smile (UK)",
|
|
sc: "Online",
|
|
t: "asmuk",
|
|
u: "https://smile.amazon.co.uk/s?field-keywords={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.ultratools.com",
|
|
r: 0,
|
|
s: "Ultratools",
|
|
sc: "Domains",
|
|
t: "asnumber",
|
|
u: "https://www.ultratools.com/tools/asnInfoResult?domainName={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "awoiaf.westeros.org",
|
|
r: 3,
|
|
s: "A Wiki of Ice and Fire",
|
|
sc: "Topical",
|
|
t: "asoiaf",
|
|
u: "http://awoiaf.westeros.org/index.php?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.asos.com",
|
|
r: 0,
|
|
s: "Asos.com",
|
|
sc: "Online",
|
|
t: "asos",
|
|
u: "http://www.asos.com/search/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "smile.amazon.com",
|
|
r: 4,
|
|
s: "Amazon Subscribe & Save",
|
|
sc: "Online",
|
|
t: "ass",
|
|
u: "https://smile.amazon.com/s?url=srs%3D5856181011&field-keywords={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "duckduckgo.com",
|
|
r: 0,
|
|
s: "Asterisk Wiki",
|
|
sc: "Sysadmin",
|
|
t: "asterisk",
|
|
u: "https://duckduckgo.com/?q={{{s}}}+site%3Awiki.asterisk.org&ia=web",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "stock.adobe.com",
|
|
r: 0,
|
|
s: "Adobe Stock",
|
|
sc: "Tools",
|
|
t: "astk",
|
|
u: "https://stock.adobe.com/search?k={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "stock.adobe.com",
|
|
r: 0,
|
|
s: "Adobe Stock",
|
|
sc: "Images",
|
|
t: "astock",
|
|
u: "https://stock.adobe.com/fr/search?k={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.astray.com",
|
|
r: 0,
|
|
s: "Astray Recipes",
|
|
sc: "Food",
|
|
t: "astray",
|
|
u: "http://www.astray.com/recipes/?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.astrobin.com",
|
|
r: 0,
|
|
s: "AstroBin",
|
|
sc: "Images",
|
|
t: "astrobin",
|
|
u: "http://www.astrobin.com/search/?q={{{s}}}&search_type=1&solar_system_main_subject=&telescope_type=any&camera_type=any&aperture_min=&aperture_max=&pixel_size_min=&pixel_size_max=&start_date=&end_date=&integration_min=&integration_max=&moon_phase_min=&moon_phase_max=",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "smile.amazon.co.uk",
|
|
r: 12,
|
|
s: "Amazon Smile (UK)",
|
|
sc: "Online",
|
|
t: "asuk",
|
|
u: "https://smile.amazon.co.uk/s?field-keywords={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.asus.com",
|
|
r: 0,
|
|
s: "Asus",
|
|
sc: "Tech",
|
|
t: "asus",
|
|
u: "http://www.asus.com/us/Search/?SearchKey={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "search.asx.com.au",
|
|
r: 0,
|
|
s: "Australian Securities Exchange",
|
|
sc: "Jobs",
|
|
t: "asx",
|
|
u: "https://search.asx.com.au/s/search.html?query={{{s}}}&collection=asx-meta&profile=web",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.at40.com",
|
|
r: 0,
|
|
s: "American Top 40",
|
|
sc: "Radio",
|
|
t: "at40",
|
|
u: "http://www.at40.com/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.addictivetips.com",
|
|
r: 11,
|
|
s: "Addictive Tips",
|
|
sc: "Blogs",
|
|
t: "at",
|
|
u: "http://www.addictivetips.com/archives/search/?cx=015974260755795457590%3Akigcmyffu6y&cof=FORID%3A11&ie=UTF-8&q={{{s}}}&s=Search",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "arcade.tokyo",
|
|
r: 0,
|
|
s: "Arcade Tokyo",
|
|
sc: "Games (general)",
|
|
t: "a.t",
|
|
u: "https://arcade.tokyo/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.atcmarket.cz",
|
|
r: 0,
|
|
s: "AT Computers",
|
|
sc: "Online (marketplace)",
|
|
t: "atcomp",
|
|
u: "https://www.atcmarket.cz/zbozi?hledani=true&zb={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "allthingsd.com",
|
|
r: 0,
|
|
s: "allthingsd",
|
|
sc: "Specialty",
|
|
t: "atd",
|
|
u: "http://allthingsd.com/?s={{{s}}}:",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.athletic.net",
|
|
r: 0,
|
|
s: "Athletic.net",
|
|
sc: "Tools",
|
|
t: "ath",
|
|
u: "https://www.athletic.net/Search.aspx#?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.accesstoinsight.org",
|
|
r: 0,
|
|
s: "Access to Insight",
|
|
sc: "Reference (religion)",
|
|
t: "ati",
|
|
u: "http://www.accesstoinsight.org/search_results.html?cx=015061908441090246348%3Adj4lxnh4dda&cof=FORID%3A9%3BNB%3A1&ie=UTF-8&q={{{s}}}&sa=Search",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "academie.atilf.fr",
|
|
r: 0,
|
|
s: "Acad\u00e9mie Fran\u00e7aise",
|
|
sc: "Academic",
|
|
t: "atilf",
|
|
u: "https://academie.atilf.fr/9/consulter/{{{s}}}?page=1",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "atmospherejs.com",
|
|
r: 0,
|
|
s: "atmosphereJS",
|
|
sc: "Languages (javascript)",
|
|
t: "atjs",
|
|
u: "https://atmospherejs.com/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.americastestkitchen.com",
|
|
r: 16,
|
|
s: "America's Test Kitchen",
|
|
sc: "Food",
|
|
t: "atk",
|
|
u: "https://www.americastestkitchen.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.atlantistime.com",
|
|
r: 0,
|
|
s: "Atlantis Time-Line",
|
|
sc: "Companies",
|
|
t: "atlantis",
|
|
u: "https://www.atlantistime.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "atlas.torproject.org",
|
|
r: 0,
|
|
s: "Atlas",
|
|
sc: "Sysadmin",
|
|
t: "atlas",
|
|
u: "https://atlas.torproject.org/#search/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.atlasobscura.com",
|
|
r: 0,
|
|
s: "Atlas Obscura",
|
|
sc: "Misc",
|
|
t: "atlaso",
|
|
u: "https://www.atlasobscura.com/search?q={{{s}}}&kind=keyword",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.atlaspiv.cz",
|
|
r: 0,
|
|
s: "Atlas piv",
|
|
sc: "Food",
|
|
t: "atlaspiv",
|
|
u: "http://www.atlaspiv.cz/?beername={{{s}}} ",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "atlwiki.net",
|
|
r: 8,
|
|
s: "ATL Wiki",
|
|
sc: "Reference",
|
|
t: "atl",
|
|
u: "http://atlwiki.net/Special:Search/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "atlona.com",
|
|
r: 0,
|
|
s: "Atlona",
|
|
sc: "Tech",
|
|
t: "atlona",
|
|
u: "http://atlona.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "forum.a-tm.co.jp",
|
|
r: 0,
|
|
s: "Ateam Forum",
|
|
sc: "Games (specific)",
|
|
t: "a-tm",
|
|
u: "http://forum.a-tm.co.jp/search?q=hello&searchJSON={%22keywords%22%3A%22{{{s}}}%22}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.atmatix.pl",
|
|
r: 0,
|
|
s: "ATmatix",
|
|
sc: "Business",
|
|
t: "atmatix",
|
|
u: "https://www.atmatix.pl/patterns/all?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "atmospherejs.com",
|
|
r: 0,
|
|
s: "AtmosphereJS",
|
|
sc: "Languages (javascript)",
|
|
t: "atmospherejs",
|
|
u: "https://atmospherejs.com/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "alternativeto.net",
|
|
r: 158,
|
|
s: "AlternativeTo",
|
|
sc: "Downloads (software)",
|
|
t: "ato",
|
|
u: "https://alternativeto.net/browse/search/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.atomtickets.com",
|
|
r: 0,
|
|
s: "Atom Tickets",
|
|
sc: "Movies",
|
|
t: "atom",
|
|
u: "https://www.atomtickets.com/search?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "atom.io",
|
|
r: 0,
|
|
s: "atom.io",
|
|
sc: "Downloads (add-ons)",
|
|
t: "atomio",
|
|
u: "https://atom.io/packages/search?utf8=%E2%9C%93&q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "atom.io",
|
|
r: 0,
|
|
s: "Atom packages",
|
|
sc: "Downloads (add-ons)",
|
|
t: "atompackages",
|
|
u: "https://atom.io/packages/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "atom.io",
|
|
r: 0,
|
|
s: "Atom themes",
|
|
sc: "Downloads (add-ons)",
|
|
t: "atomthemes",
|
|
u: "https://atom.io/themes/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.atpworldtour.com",
|
|
r: 0,
|
|
s: "ATP World Tour",
|
|
sc: "Sports",
|
|
t: "atp",
|
|
u: "http://www.atpworldtour.com/Search/Site.aspx?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.abovetopsecret.com",
|
|
r: 0,
|
|
s: "Above Top Secret",
|
|
sc: "Forum",
|
|
t: "ats",
|
|
u: "http://www.abovetopsecret.com/forum/index.php {{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.advancedtautactica.com",
|
|
r: 0,
|
|
s: "Advanced Tau Tactica",
|
|
sc: "Games (general)",
|
|
t: "att",
|
|
u: "http://www.advancedtautactica.com/search.php?keywords={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "atomix.vg",
|
|
r: 0,
|
|
s: "Atomix.vg",
|
|
sc: "Games (general)",
|
|
t: "atx",
|
|
u: "http://atomix.vg/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.autoitscript.com",
|
|
r: 0,
|
|
s: "AutoIt Forums",
|
|
sc: "Programming",
|
|
t: "au3",
|
|
u: "https://www.autoitscript.com/forum/search/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "aur.archlinux.org",
|
|
r: 41,
|
|
s: "Arch Linux User Repository",
|
|
sc: "Downloads (software)",
|
|
t: "au",
|
|
u: "https://aur.archlinux.org/packages/?K={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "primo.aub.aau.dk",
|
|
r: 0,
|
|
s: "Aalborg Universitetsbibliotek",
|
|
sc: "Academic",
|
|
t: "aub",
|
|
u: "http://primo.aub.aau.dk/primo_library/libweb/action/search.do?fn=search&ct=search&initialSearch=true&mode=Basic&tab=default_tab&indx=1&dum=true&srt=rank&vid=desktop&frbg=&vl%28freeText0%29={{{s}}}&scp.scps=scope%3A%28AUB_PROJEKT_DC%29%2Cscope%3A%28AUB_SFX%29%2Cscope%3A%28AUB_AAL%29%2Cscope%3A%28AUB_ESB%29%2Cscope%3A%28AUB_KBH%29%2Cscope%3A%28AUB_VBN%29%2Cprimo_central_multiple_fe&vl%2857399062UI1%29=all_items&vl%281UIStartWith0%29=contains&vl%2857399064UI0%29=any&vl%2857399064UI0%29=title&vl%2857399064UI0%29=any",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "askubuntu.com",
|
|
r: 0,
|
|
s: "AskUbuntu",
|
|
sc: "Sysadmin (Ubuntu)",
|
|
t: "aubuntu",
|
|
u: "http://askubuntu.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.xe.com",
|
|
r: 0,
|
|
s: "XE (AUD2EUR)",
|
|
sc: "Tools",
|
|
t: "AUD2EUR",
|
|
u: "http://www.xe.com/currencyconverter/convert/?Amount={{{s}}}&From=AUD&To=EUR",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.xe.com",
|
|
r: 0,
|
|
s: "XE (AUD2GBP)",
|
|
sc: "Tools",
|
|
t: "AUD2GDP",
|
|
u: "http://www.xe.com/currencyconverter/convert/?Amount={{{s}}}&From=AUD&To=GBP",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.xe.com",
|
|
r: 0,
|
|
s: "XE (AUD2USD)",
|
|
sc: "Tools",
|
|
t: "aud2usd",
|
|
u: "http://www.xe.com/currencyconverter/convert/?Amount={{{s}}}&From=AUD&To=USD",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "forum.audacityteam.org",
|
|
r: 0,
|
|
s: "Audacity Forum",
|
|
sc: "Music",
|
|
t: "audf",
|
|
u: "https://forum.audacityteam.org/search.php?keywords={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.audi.de",
|
|
r: 0,
|
|
s: "Audi",
|
|
sc: "Companies",
|
|
t: "audi",
|
|
u: "http://www.audi.de/de/brand/de/tools/search.html#search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.audible.com",
|
|
r: 54,
|
|
s: "Audible.com",
|
|
sc: "Online",
|
|
t: "audible",
|
|
u: "http://www.audible.com/search?advsearchKeywords={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.audible.com",
|
|
r: 0,
|
|
s: "Audible.com",
|
|
sc: "Online",
|
|
t: "audible.com",
|
|
u: "http://www.audible.com/search?advsearchKeywords={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.audible.de",
|
|
r: 0,
|
|
s: "Audible.de",
|
|
sc: "Online",
|
|
t: "audible.de",
|
|
u: "http://www.audible.de/search?advsearchKeywords={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.audible.de",
|
|
r: 0,
|
|
s: "Audible.de",
|
|
sc: "Online",
|
|
t: "audiblede",
|
|
u: "http://www.audible.de/search?advsearchKeywords={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.audible.co.uk",
|
|
r: 4,
|
|
s: "Audible UK",
|
|
sc: "Online",
|
|
t: "audibleuk",
|
|
u: "http://www.audible.co.uk/search/?advsearchKeywords={{{s}}}&filterby=field-keywords&x=0&y=0",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "audiobook.jp",
|
|
r: 0,
|
|
s: "audiobookjp",
|
|
sc: "Online",
|
|
t: "audiobookjp",
|
|
u: "https://audiobook.jp/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "fr.audiofanzine.com",
|
|
r: 3,
|
|
s: "Audiofanzine",
|
|
sc: "Music",
|
|
t: "audiofanzine",
|
|
u: "http://fr.audiofanzine.com/recherche/{{{s}}}.html",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "app.audiogon.com",
|
|
r: 0,
|
|
s: "Audiogon",
|
|
sc: "Online (marketplace)",
|
|
t: "audiogon",
|
|
u: "https://app.audiogon.com/listings?&global_search_text={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "audiojungle.net",
|
|
r: 0,
|
|
s: "AudioJungle",
|
|
sc: "Tech",
|
|
t: "audiojungle",
|
|
u: "http://audiojungle.net/search?utf8=%E2%9C%93&term={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.audionetwork.com",
|
|
r: 0,
|
|
s: "Audio Network",
|
|
sc: "Music",
|
|
t: "audionetwork",
|
|
u: "http://www.audionetwork.com/show-production-results.aspx?stype=4&keywords={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "birds.audubon.org",
|
|
r: 0,
|
|
s: "National Audubon Society (birds)",
|
|
sc: "Topical",
|
|
t: "audubonb",
|
|
u: "http://birds.audubon.org/search/node?keys={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.audubonmagazine.org",
|
|
r: 0,
|
|
s: "Audubon Magazine",
|
|
sc: "Topical",
|
|
t: "audubonmag",
|
|
u: "http://www.audubonmagazine.org/search/node?keys={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.audubon.org",
|
|
r: 0,
|
|
s: "National Audubon Society",
|
|
sc: "Topical",
|
|
t: "audubon",
|
|
u: "http://www.audubon.org/search/node?keys={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.co.uk",
|
|
r: 0,
|
|
s: "Amazon.co.uk",
|
|
sc: "Online",
|
|
t: "a.uk",
|
|
u: "https://www.amazon.co.uk/s?k={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.co.uk",
|
|
r: 2466,
|
|
s: "Amazon.co.uk",
|
|
sc: "Online (intl)",
|
|
t: "auk",
|
|
u: "https://www.amazon.co.uk/s?k={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "aukro.cz",
|
|
r: 0,
|
|
s: "Aukro",
|
|
sc: "Online (marketplace)",
|
|
t: "aukro",
|
|
u: "http://aukro.cz/listing.php/search?string={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.aulete.com.br",
|
|
r: 3,
|
|
s: "iDicion\u00e1rio Aulete",
|
|
sc: "Reference (words)",
|
|
t: "aulete",
|
|
u: "http://www.aulete.com.br/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "search.auone.jp",
|
|
r: 0,
|
|
s: "au one Web Portal",
|
|
sc: "Search",
|
|
t: "auone",
|
|
u: "http://search.auone.jp/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "aur4.archlinux.org",
|
|
r: 0,
|
|
s: "Arch User Repository v4",
|
|
sc: "Sysadmin (Arch)",
|
|
t: "aur4",
|
|
u: "https://aur4.archlinux.org/packages/?K={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "aur.archlinux.org",
|
|
r: 3999,
|
|
s: "Arch User Repository",
|
|
sc: "Sysadmin (Arch)",
|
|
t: "aur",
|
|
u: "https://aur.archlinux.org/packages/?K={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "aur.archlinux.org",
|
|
r: 0,
|
|
s: "Arch User Repository Package",
|
|
sc: "Sysadmin (Arch)",
|
|
t: "aurp",
|
|
u: "https://aur.archlinux.org/packages/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.com",
|
|
r: 93,
|
|
s: "Amazon.com",
|
|
sc: "Online",
|
|
t: "aus",
|
|
u: "https://www.amazon.com/s?k={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "australia.gov.au",
|
|
r: 0,
|
|
s: "australia.gov.au",
|
|
sc: "Government",
|
|
t: "ausgov",
|
|
u: "http://australia.gov.au/search?collection=gov_all&coverage=all&num_ranks=3&extra_all_num_ranks=3&form=simple&query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.ausmed.com.au",
|
|
r: 0,
|
|
s: "Ausmed Education",
|
|
sc: "Health",
|
|
t: "ausmed",
|
|
u: "http://www.ausmed.com.au/sitesearch?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "ausopen.com",
|
|
r: 0,
|
|
s: "Australian Open",
|
|
sc: "Sports",
|
|
t: "ausopen",
|
|
u: "https://ausopen.com/search?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "auspost.com.au",
|
|
r: 3,
|
|
s: "Australia Post",
|
|
sc: "Tracking",
|
|
t: "auspost",
|
|
u: "http://auspost.com.au/track/track.html?id={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.austlii.edu.au",
|
|
r: 0,
|
|
s: "AustLII (Australasian Legal Information Institute)",
|
|
sc: "Law",
|
|
t: "austlii",
|
|
u: "http://www.austlii.edu.au/cgi-bin/sinosrch.cgi?query={{{s}}}&results=50&submit=Search&mask_world=&mask_path=&callback=on&method=auto&meta=%2Fau",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.theaustralian.com.au",
|
|
r: 0,
|
|
s: "The Australian",
|
|
sc: "Newspaper",
|
|
t: "australian",
|
|
u: "https://www.theaustralian.com.au/search-results?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.autoanything.com",
|
|
r: 0,
|
|
s: "AutoAnything",
|
|
sc: "Online",
|
|
t: "autoanything",
|
|
u: "http://www.autoanything.com/shop/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.autoblip.com",
|
|
r: 0,
|
|
s: "Autoblip",
|
|
sc: "Online (deals)",
|
|
t: "autoblip",
|
|
u: "http://www.autoblip.com/used/{{{s}}} ",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "seznam-autobusu.cz",
|
|
r: 0,
|
|
s: "seznam-autobusu.cz",
|
|
sc: "General",
|
|
t: "autobus",
|
|
u: "http://seznam-autobusu.cz/seznam?numberPlateOrNumber={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.autocar.co.uk",
|
|
r: 0,
|
|
s: "Autocar.co.uk",
|
|
sc: "Online (intl)",
|
|
t: "autocar",
|
|
u: "http://www.autocar.co.uk/SearchResults.aspx?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.autosar.org",
|
|
r: 0,
|
|
s: "Autosar",
|
|
sc: "Programming",
|
|
t: "autosar",
|
|
u: "https://www.autosar.org/nc/document-search/?tx_sysgsearch_pi1%5Bquery%5D={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.autocosmos.com.mx",
|
|
r: 0,
|
|
s: "Autocosmos",
|
|
sc: "Magazine (car)",
|
|
t: "autos",
|
|
u: "http://www.autocosmos.com.mx/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.autozone.com",
|
|
r: 6,
|
|
s: "AutoZone",
|
|
sc: "Big box/department",
|
|
t: "autozone",
|
|
u: "http://www.autozone.com/searchresult?searchText={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.alpenvereinaktiv.com",
|
|
r: 0,
|
|
s: "alpenvereinaktiv",
|
|
sc: "Sports",
|
|
t: "avaktiv",
|
|
u: "https://www.alpenvereinaktiv.com/en/search/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.avanza.se",
|
|
r: 0,
|
|
s: "Avanza",
|
|
sc: "Business",
|
|
t: "avanza",
|
|
u: "https://www.avanza.se/sok.html?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "avatar.wikia.com",
|
|
r: 0,
|
|
s: "Avatar Wiki",
|
|
sc: "TV",
|
|
t: "avatar",
|
|
u: "http://avatar.wikia.com/wiki/Special:Search?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.avatarpress.com",
|
|
r: 0,
|
|
s: "Avatar Press",
|
|
sc: "Comics",
|
|
t: "avatarpress",
|
|
u: "http://www.avatarpress.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.avclub.com",
|
|
r: 11,
|
|
s: "A.V. Club",
|
|
sc: "Movies",
|
|
t: "av",
|
|
u: "https://www.avclub.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "avxsearch.se",
|
|
r: 0,
|
|
s: "avax",
|
|
sc: "Tools",
|
|
t: "avax",
|
|
u: "http://avxsearch.se/search?q={{{s}}}:",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "avaxsearch.net",
|
|
r: 0,
|
|
s: "AvaxHome",
|
|
sc: "General",
|
|
t: "avaxh",
|
|
u: "http://avaxsearch.net/avaxhome_search?q={{{s}}} &a=&commit=Search&c=&l=&sort_by=",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.avclub.com",
|
|
r: 0,
|
|
s: "The A.V. Club",
|
|
sc: "Movies",
|
|
t: "avclub",
|
|
u: "https://www.avclub.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.avclub.com",
|
|
r: 0,
|
|
s: "The A.V. Club",
|
|
sc: "Misc",
|
|
t: "avc",
|
|
u: "http://www.avclub.com/search/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "avechi.com",
|
|
r: 0,
|
|
s: "Avechi",
|
|
sc: "Online",
|
|
t: "avechi",
|
|
u: "https://avechi.com/catalogsearch/result/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.aventrix.com",
|
|
r: 0,
|
|
s: "Aventrix",
|
|
sc: "Events",
|
|
t: "aventrix",
|
|
u: "https://www.aventrix.com/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.asexuality.org",
|
|
r: 0,
|
|
s: "AVENwiki",
|
|
sc: "Topical",
|
|
t: "avenwiki",
|
|
u: "http://www.asexuality.org/wiki/index.php?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "search.avg.com",
|
|
r: 0,
|
|
s: "AVG Secure Search",
|
|
sc: "Search",
|
|
t: "avg",
|
|
u: "http://search.avg.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "kb.avg.com",
|
|
r: 0,
|
|
s: "AVG Knowledge Base",
|
|
sc: "Search",
|
|
t: "avgkb",
|
|
u: "http://kb.avg.com/pkb_Home?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "avicultura.com",
|
|
r: 0,
|
|
s: "Avicultura",
|
|
sc: "Academic",
|
|
t: "avi",
|
|
u: "https://avicultura.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.applevis.com",
|
|
r: 0,
|
|
s: "applevis.com",
|
|
sc: "Downloads (apps)",
|
|
t: "avis",
|
|
u: "https://www.applevis.com/search?search_api_views_fulltext={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.avito.ru",
|
|
r: 13,
|
|
s: "Avito",
|
|
sc: "Online (deals)",
|
|
t: "avito",
|
|
u: "https://www.avito.ru/rossiya?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "avpodcast.net",
|
|
r: 0,
|
|
s: "AVpodcast",
|
|
sc: "Audio",
|
|
t: "avpod",
|
|
u: "https://avpodcast.net/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.adamvstheman.com",
|
|
r: 0,
|
|
s: "Adam Vs The Man",
|
|
sc: "Broadcast",
|
|
t: "avtm",
|
|
u: "http://www.adamvstheman.com/?s={{{s}}} ",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "avtoprom.org",
|
|
r: 0,
|
|
s: "avtoprom.org",
|
|
sc: "Video",
|
|
t: "avtoprom",
|
|
u: "https://avtoprom.org/search.php?keywords={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.avvo.com",
|
|
r: 0,
|
|
s: "avvo.com",
|
|
sc: "Law",
|
|
t: "avvo",
|
|
u: "https://www.avvo.com/search?query={{{s}}}&commit=Search",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "anevandos.wikia.com",
|
|
r: 0,
|
|
s: "Anevandos Wiki",
|
|
sc: "Docs",
|
|
t: "avw",
|
|
u: "http://anevandos.wikia.com/wiki/Special:Search?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "wordsmith.org",
|
|
r: 0,
|
|
s: "A.Word.A.Day",
|
|
sc: "Reference (words)",
|
|
t: "awad",
|
|
u: "http://wordsmith.org/awad/search.html?cx=partner-pub-0068747404870456%3A118gxl-7atb&cof=FORID%3A11&q={{{s}}}&sa=Search",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "wiki.archlinux.org",
|
|
r: 7284,
|
|
s: "Arch Linux Wiki",
|
|
sc: "Sysadmin (Arch)",
|
|
t: "aw",
|
|
u: "https://wiki.archlinux.org/index.php?title=Special%3ASearch&search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "flightaware.com",
|
|
r: 0,
|
|
s: "flightaware",
|
|
sc: "Tracking",
|
|
t: "aware",
|
|
u: "http://flightaware.com/live/airport/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.getawaygear.com",
|
|
r: 0,
|
|
s: "Get Away Gear",
|
|
sc: "Online (marketplace)",
|
|
t: "away",
|
|
u: "https://www.getawaygear.com/index.php?page=search&sPattern={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.com",
|
|
r: 0,
|
|
s: "Amazon Warehouse Deals",
|
|
sc: "Online (deals)",
|
|
t: "awd",
|
|
u: "https://www.amazon.com/s/url=search-alias%3Dwarehouse-deals&field-keywords={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "wiki.archlinux.de",
|
|
r: 0,
|
|
s: "wiki.archlinux.de",
|
|
sc: "Sysadmin (Arch)",
|
|
t: "awde",
|
|
u: "https://wiki.archlinux.de/index.php?title=Spezial%3ASuche&search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "ruby.libhunt.com",
|
|
r: 0,
|
|
s: "Awesome Ruby",
|
|
sc: "Languages (ruby)",
|
|
t: "awerb",
|
|
u: "https://ruby.libhunt.com/search?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "awesomecow.com",
|
|
r: 0,
|
|
s: "Awesome Cow",
|
|
sc: "Search",
|
|
t: "awesomecow",
|
|
u: "http://awesomecow.com/index.php?ieska={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "awesomenauts.gamepedia.com",
|
|
r: 0,
|
|
s: "Awesomenauts Wiki",
|
|
sc: "Games (specific)",
|
|
t: "awesomenauts",
|
|
u: "http://awesomenauts.gamepedia.com/index.php?title=Special%3ASearch&profile=default&search={{{s}}}&fulltext=Search",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.augsburgwiki.de",
|
|
r: 0,
|
|
s: "Augsburgwiki",
|
|
sc: "General",
|
|
t: "awiki",
|
|
u: "https://www.augsburgwiki.de/index.php/AugsburgWiki/Suchergebnisse?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "images.search.yahoo.com",
|
|
r: 0,
|
|
s: "Yahoo Images",
|
|
sc: "Images",
|
|
t: "awimg",
|
|
u: "http://images.search.yahoo.com/search/images;_ylt=A0PDoS1.milPyVkAh7OJzbkF?p={{{s}}}&fr=alltheweb&ei=utf-8&n=30&x=wrt&y=Search",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.ancientwisdom.biz",
|
|
r: 0,
|
|
s: "Ancient Wisdom",
|
|
sc: "Online",
|
|
t: "awisdom",
|
|
u: "https://www.ancientwisdom.biz/search.php?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "awoiaf.westeros.org",
|
|
r: 16,
|
|
s: "A Wiki of Ice and Fire",
|
|
sc: "TV",
|
|
t: "awoiaf",
|
|
u: "http://awoiaf.westeros.org/index.php?search={{{s}}}&title=Special%3ASearch&go=Go",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "docs.aws.amazon.com",
|
|
r: 34,
|
|
s: "Amazon Web Services",
|
|
sc: "Sysadmin (man)",
|
|
t: "aws",
|
|
u: "https://docs.aws.amazon.com/search/doc-search.html?searchPath=documentation&searchQuery={{{s}}} ",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "androidxref.com",
|
|
r: 6,
|
|
s: "androidxref",
|
|
sc: "Libraries/Frameworks",
|
|
t: "ax",
|
|
u: "http://androidxref.com/5.1.0_r1/search?&project=abi&project=art&project=bionic&project=bootable&project=build&project=cts&project=dalvik&project=developers&project=development&project=device&project=docs&project=external&project=frameworks&project=hardware&project=libcore&project=libnativehelper&project=ndk&project=packages&project=pdk&project=prebuilts&project=sdk&project=system&project=tools&q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.levykauppax.fi",
|
|
r: 0,
|
|
s: "Levykauppa \u00c4x",
|
|
sc: "Online",
|
|
t: "\u00e4x",
|
|
u: "https://www.levykauppax.fi/search/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.aboutyou.de",
|
|
r: 0,
|
|
s: "AboutYou",
|
|
sc: "Online (marketplace)",
|
|
t: "ay",
|
|
u: "https://www.aboutyou.de/suche?term={{{s}}}&search_source=ddgo",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "ayrne.io",
|
|
r: 0,
|
|
s: "Ayrne",
|
|
sc: "Blogs",
|
|
t: "ayrne",
|
|
u: "https://ayrne.io/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.com",
|
|
r: 1546,
|
|
s: "Amazon.com",
|
|
sc: "Online",
|
|
t: "az",
|
|
u: "https://www.amazon.com/s?k={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.de",
|
|
r: 61,
|
|
s: "Amazon Deutschland",
|
|
sc: "Online",
|
|
t: "azd",
|
|
u: "https://www.amazon.de/s?k={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.es",
|
|
r: 10,
|
|
s: "Amazon Spain",
|
|
sc: "Online",
|
|
t: "aze",
|
|
u: "https://www.amazon.es/s?k={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.fr",
|
|
r: 177,
|
|
s: "Amazon fr",
|
|
sc: "Online",
|
|
t: "azf",
|
|
u: "https://www.amazon.fr/s?k={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.azfonts.net",
|
|
r: 0,
|
|
s: "AZFonts",
|
|
sc: "Downloads (software)",
|
|
t: "azfonts",
|
|
u: "https://www.azfonts.net/search.html?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "azurlane.koumakan.jp",
|
|
r: 10,
|
|
s: "Azur Lane Wiki",
|
|
sc: "Games (specific)",
|
|
t: "azlane",
|
|
u: "https://azurlane.koumakan.jp/w/index.php?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "search.azlyrics.com",
|
|
r: 39,
|
|
s: "Az Lyrics",
|
|
sc: "Misc",
|
|
t: "azl",
|
|
u: "http://search.azlyrics.com/search.php?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "search.azlyrics.com",
|
|
r: 51,
|
|
s: "AZLyrics",
|
|
sc: "Music (Lyrics)",
|
|
t: "azlyrics",
|
|
u: "http://search.azlyrics.com/search.php?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.azom.com",
|
|
r: 3,
|
|
s: "AZoM",
|
|
sc: "Reference",
|
|
t: "azm",
|
|
u: "https://www.azom.com/search.aspx?q={{{s}}}&site=all&fsb=1",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "azol.de",
|
|
r: 0,
|
|
s: "Augsburger Allgemeine",
|
|
sc: "Newspaper",
|
|
t: "azol",
|
|
u: "http://azol.de/suche/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.azom.com",
|
|
r: 0,
|
|
s: "Azom",
|
|
sc: "Reference",
|
|
t: "azom",
|
|
u: "https://www.azom.com/search.aspx?q={{{s}}}&site=all&fsb=1",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "azspot.net",
|
|
r: 0,
|
|
s: "AZspot",
|
|
sc: "Magazine",
|
|
t: "azs",
|
|
u: "https://azspot.net/search/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.co.uk",
|
|
r: 480,
|
|
s: "Amazon UK",
|
|
sc: "Online",
|
|
t: "azuk",
|
|
u: "https://www.amazon.co.uk/s?k={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "azure.microsoft.com",
|
|
r: 3,
|
|
s: "Azure Documentation",
|
|
sc: "Domains",
|
|
t: "azure",
|
|
u: "https://azure.microsoft.com/en-us/search/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "b0b.fr",
|
|
r: 0,
|
|
s: "b0b.fr",
|
|
sc: "Blogs",
|
|
t: "b0b",
|
|
u: "http://b0b.fr/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "b3ta.com",
|
|
r: 0,
|
|
s: "B3TA",
|
|
sc: "Misc",
|
|
t: "b3ta",
|
|
u: "http://b3ta.com/search/posts?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.biology4kids.com",
|
|
r: 0,
|
|
s: "Biology4kids",
|
|
sc: "Academic (biology)",
|
|
t: "b4kids",
|
|
u: "http://www.biology4kids.com/search.html?cx=partner-pub-9168758629909687%3A9553394167&cof=FORID%3A10&ie=UTF-8&q={{{s}}}&sa=Search",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.b4x.com",
|
|
r: 0,
|
|
s: "B4X",
|
|
sc: "Languages (other)",
|
|
t: "b4x",
|
|
u: "https://www.b4x.com/android/forum/pages/results/?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "babylon5.wikia.com",
|
|
r: 0,
|
|
s: "The Babylon Project",
|
|
sc: "TV",
|
|
t: "b5",
|
|
u: "http://babylon5.wikia.com/wiki/Special:Search?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.alibaba.com",
|
|
r: 0,
|
|
s: "Alibaba",
|
|
sc: "Search",
|
|
t: "baba",
|
|
u: "https://www.alibaba.com/trade/search?IndexArea=product_en&CatId=&SearchText={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.babla.fr",
|
|
r: 0,
|
|
s: "Bab.la FR",
|
|
sc: "Reference (words)",
|
|
t: "bab",
|
|
u: "http://www.babla.fr/anglais-francais/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Translation",
|
|
d: "en.bab.la",
|
|
r: 0,
|
|
s: "bab.la English-Czech dictionary",
|
|
sc: "General",
|
|
t: "babcs",
|
|
u: "https://en.bab.la/dictionary/english-czech/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "fr.bab.la",
|
|
r: 0,
|
|
s: "bab",
|
|
sc: "Tools",
|
|
t: "babdedk",
|
|
u: "http://fr.bab.la/dictionnaire/danois-allemand/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "beeradvocate.com",
|
|
r: 4,
|
|
s: "Beer Advocate",
|
|
sc: "Misc",
|
|
t: "ba",
|
|
u: "http://beeradvocate.com/search?q={{{s}}}&qt=beer",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "nl.bab.la",
|
|
r: 0,
|
|
s: "Bab.la NL",
|
|
sc: "Tools",
|
|
t: "babel",
|
|
u: "http://nl.bab.la/woordenboek/nederlands-engels/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "live.babelnet.org",
|
|
r: 0,
|
|
s: "BabelNet",
|
|
sc: "Reference (words)",
|
|
t: "babelnet",
|
|
u: "http://live.babelnet.org/search?word={{{s}}}&lang=EN",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "en.bab.la",
|
|
r: 0,
|
|
s: "en.bab.la/dictionary/english-german/",
|
|
sc: "Reference (words intl)",
|
|
t: "babende",
|
|
u: "http://en.bab.la/dictionary/english-german/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "en.bab.la",
|
|
r: 0,
|
|
s: "Bab.la English-Esperanto",
|
|
sc: "Tools",
|
|
t: "babeneo",
|
|
u: "http://en.bab.la/dictionary/english-esperanto/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "en.bab.la",
|
|
r: 0,
|
|
s: "bab.la english swedish",
|
|
sc: "Tools",
|
|
t: "babensw",
|
|
u: "https://en.bab.la/dictionary/english-swedish/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "de.bab.la",
|
|
r: 0,
|
|
s: "bab.la Spanish-German",
|
|
sc: "Tools",
|
|
t: "babesde",
|
|
u: "http://de.bab.la/woerterbuch/spanisch-deutsch/{{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "babidoo.de",
|
|
r: 0,
|
|
s: "BaBiDoo",
|
|
sc: "Magazine",
|
|
t: "babidoo",
|
|
u: "https://babidoo.de/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Translation",
|
|
d: "en.bab.la",
|
|
r: 0,
|
|
s: "Bab.la Polish",
|
|
sc: "General",
|
|
t: "babp",
|
|
u: "https://en.bab.la/dictionary/polish-english/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "pl.bab.la",
|
|
r: 27,
|
|
s: "Bab.la",
|
|
sc: "Reference (words)",
|
|
t: "babpl",
|
|
u: "http://pl.bab.la/slownik/angielski-polski/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "pl.bab.la",
|
|
r: 0,
|
|
s: "Bab.la pl ru",
|
|
sc: "Tools",
|
|
t: "babplru",
|
|
u: "https://pl.bab.la/slownik/polski-rosyjski/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "sv.bab.la",
|
|
r: 4,
|
|
s: "bab.la",
|
|
sc: "Tools",
|
|
t: "babsv",
|
|
u: "http://sv.bab.la/lexikon/engelsk-svensk/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "traductor.babylon-software.com",
|
|
r: 0,
|
|
s: "Babylon Translator <en-es>",
|
|
sc: "Reference (words intl)",
|
|
t: "babylonee",
|
|
u: "http://traductor.babylon-software.com/ingles/a-espanol/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "babymigo.com",
|
|
r: 0,
|
|
s: "Babymigo",
|
|
sc: "Blogs",
|
|
t: "babymigo",
|
|
u: "https://babymigo.com/search/questions?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "buenosairesconnect.com",
|
|
r: 0,
|
|
s: "BuenosAiresConnect",
|
|
sc: "Blogs (intl)",
|
|
t: "bac",
|
|
u: "http://buenosairesconnect.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "backpack.tf",
|
|
r: 5,
|
|
s: "BackPack.tf",
|
|
sc: "Tools",
|
|
t: "backpack",
|
|
u: "http://backpack.tf/id/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.backpacker.com",
|
|
r: 0,
|
|
s: "Backpaker Magazine",
|
|
sc: "Travel",
|
|
t: "backpacker",
|
|
u: "https://www.backpacker.com/search?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "oracleofbacon.org",
|
|
r: 0,
|
|
s: "Oracle of Bacon",
|
|
sc: "Movies",
|
|
t: "bacon",
|
|
u: "http://oracleofbacon.org/cgi-bin/movielinks?a=Kevin+Bacon&b={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "badi.com",
|
|
r: 0,
|
|
s: "Badi",
|
|
sc: "Maps",
|
|
t: "badi",
|
|
u: "https://badi.com/us/s/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.baeldung.com",
|
|
r: 0,
|
|
s: "Baeldung",
|
|
sc: "Programming",
|
|
t: "baeldung",
|
|
u: "https://www.baeldung.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "reiseauskunft.bahn.de",
|
|
r: 10,
|
|
s: "Deutsche Bahn Reiseauskunft",
|
|
sc: "Search (non-US)",
|
|
t: "bahn",
|
|
u: "http://reiseauskunft.bahn.de/bin/query.exe/dn?S=&Z={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.baidu.com",
|
|
r: 123,
|
|
s: "Baidu",
|
|
sc: "Search (non-US)",
|
|
t: "baidu",
|
|
u: "http://www.baidu.com/s?wd={{{s}}}&cl=3",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.bailii.org",
|
|
r: 0,
|
|
s: "British and Irish Legal Information Institute",
|
|
sc: "Law",
|
|
t: "bailii",
|
|
u: "http://www.bailii.org/cgi-bin/sino_search_1.cgi?sort=rank&query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.baixaki.com.br",
|
|
r: 0,
|
|
s: "Baixaki",
|
|
sc: "Blogs (intl)",
|
|
t: "baixaki",
|
|
u: "http://www.baixaki.com.br/busca.asp?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.baka-tsuki.org",
|
|
r: 0,
|
|
s: "Baka-Tsuki",
|
|
sc: "Books",
|
|
t: "bakatsuki",
|
|
u: "https://www.baka-tsuki.org/project/index.php?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.mangaupdates.com",
|
|
r: 0,
|
|
s: "Baka-Updates Manga",
|
|
sc: "Comics",
|
|
t: "bakaupdatesmanga",
|
|
u: "https://www.mangaupdates.com/search.html?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "ballotpedia.org",
|
|
r: 0,
|
|
s: "ballotpedia.org",
|
|
sc: "Government",
|
|
t: "ballot",
|
|
u: "https://ballotpedia.org/wiki/index.php?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "duckduckgo.com",
|
|
r: 0,
|
|
s: "Bambali",
|
|
sc: "Online (marketplace)",
|
|
t: "bambali",
|
|
u: "https://duckduckgo.com/?q=site%3Abambali.net+{{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.booksamillion.com",
|
|
r: 0,
|
|
s: "Books-A-Million",
|
|
sc: "Online",
|
|
t: "bam",
|
|
u: "http://www.booksamillion.com/search?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "bancodata.com.br",
|
|
r: 0,
|
|
s: "Banco Data",
|
|
sc: "Reference",
|
|
t: "bancodata",
|
|
u: "https://bancodata.com.br/busca/?i={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "band-band.com",
|
|
r: 0,
|
|
s: "Band-Band Paris",
|
|
sc: "Online",
|
|
t: "bandband",
|
|
u: "https://band-band.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "bandcamp.com",
|
|
r: 436,
|
|
s: "Bandcamp",
|
|
sc: "Music",
|
|
t: "bandcamp",
|
|
u: "https://bandcamp.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.diy.com",
|
|
r: 0,
|
|
s: "B&Q",
|
|
sc: "Online",
|
|
t: "bandq",
|
|
u: "https://www.diy.com/search?Ntt={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "baneks.site",
|
|
r: 0,
|
|
s: "\u0410\u043d\u0435\u043a\u0434\u043e\u0442\u044b \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438 \u0411",
|
|
sc: "Misc",
|
|
t: "baneks",
|
|
u: "https://baneks.site/search/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "de.pons.com",
|
|
r: 0,
|
|
s: "Pons.eu",
|
|
sc: "Reference (words intl)",
|
|
t: "bangfren",
|
|
u: "https://de.pons.com/%C3%BCbersetzung?q={{{s}}}&l=enfr&in=&lf=fr",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.banggood.com",
|
|
r: 3,
|
|
s: "Bang good",
|
|
sc: "Online (deals)",
|
|
t: "banggood",
|
|
u: "http://www.banggood.com/index.php?keywords={{{s}}}&cat_id=0&com=search",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "de.pons.com",
|
|
r: 0,
|
|
s: "Pons",
|
|
sc: "Learning",
|
|
t: "banglg",
|
|
u: "http://de.pons.com/\u00fcbersetzung?q={{{s}}}&l=dela&in=&lf=de",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "pipl.com",
|
|
r: 0,
|
|
s: "Pipl - Profile Search enguine ",
|
|
sc: "Search",
|
|
t: "BangPeople",
|
|
u: "https://pipl.com/search/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "",
|
|
r: 843,
|
|
s: "Search all !bangs",
|
|
sc: "Search (DDG)",
|
|
t: "bang",
|
|
u: "/bang?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "duckduckgo.com",
|
|
r: 614,
|
|
s: "Search all !bangs",
|
|
sc: "Search (DDG)",
|
|
t: "bangs",
|
|
u: "https://duckduckgo.com/bang?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "banned.video",
|
|
r: 0,
|
|
s: "banned.video",
|
|
sc: "Online",
|
|
t: "banned",
|
|
u: "https://banned.video/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.banq.qc.ca",
|
|
r: 0,
|
|
s: "Biblioth\u00e8que et Archives Nationales du Qu\u00e9bec",
|
|
sc: "Reference",
|
|
t: "banq",
|
|
u: "http://www.banq.qc.ca/techno/recherche/rms.html?keyword={{{s}}}&Recherche=tout&fonction=chercher&afficherPortail=checked&afficherIris=checked&afficherPistard=checked&afficherColNum=checked",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "archive.nyafuu.org",
|
|
r: 0,
|
|
s: "/bant/ archives",
|
|
sc: "Forum",
|
|
t: "bant",
|
|
u: "https://archive.nyafuu.org/bant/search/text/{{{s}}}/",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "thebarchive.com",
|
|
r: 0,
|
|
s: "The /b/ Archive",
|
|
sc: "Tools",
|
|
t: "barchive",
|
|
u: "https://thebarchive.com/_/search/text/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.shopping-bargains.com",
|
|
r: 0,
|
|
s: "Shopping-Bargains",
|
|
sc: "Online (deals)",
|
|
t: "bargain",
|
|
u: "http://www.shopping-bargains.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.barnesandnoble.com",
|
|
r: 5,
|
|
s: "Barnes & Noble",
|
|
sc: "Big box/department",
|
|
t: "barnesandnoble",
|
|
u: "https://www.barnesandnoble.com/s/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.barnivore.com",
|
|
r: 4,
|
|
s: "Barnivore",
|
|
sc: "Food",
|
|
t: "barnivore",
|
|
u: "http://www.barnivore.com/search?keyword={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.webtender.com",
|
|
r: 0,
|
|
s: "Webtender",
|
|
sc: "Food",
|
|
t: "bartender",
|
|
u: "http://www.webtender.com/cgi-bin/search?name={{{s}}}&show=15&verbose=on",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.bartleby.com",
|
|
r: 0,
|
|
s: "Bartelby",
|
|
sc: "Online (deals)",
|
|
t: "bartlets",
|
|
u: "https://www.bartleby.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "duckduckgo.com",
|
|
r: 0,
|
|
s: "Lyc\u00e9e Louis Bascan",
|
|
sc: "Learning",
|
|
t: "bascan",
|
|
u: "http://duckduckgo.com/?q={{{s}}}+site:www.lyc-bascan-rambouillet.ac-versailles.fr",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "cryptography.cc",
|
|
r: 0,
|
|
s: "cryotography.cc",
|
|
sc: "Tools",
|
|
t: "base64e",
|
|
u: "https://cryptography.cc/convert?text={{{s}}}&algorithm=base64encode",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.baseball-reference.com",
|
|
r: 0,
|
|
s: "Baseball-Reference",
|
|
sc: "Reference",
|
|
t: "baseballreference",
|
|
u: "http://www.baseball-reference.com/pl/player_search.cgi?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.base-search.net",
|
|
r: 0,
|
|
s: "Base Search",
|
|
sc: "Academic",
|
|
t: "base",
|
|
u: "https://www.base-search.net/Search/Results?lookfor={{{s}}}&type=all&oaboost=1&ling=1&name=&newsearch=1&refid=dcbasen",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.basenotes.net",
|
|
r: 0,
|
|
s: "Basenotes",
|
|
sc: "Reference",
|
|
t: "basenotes",
|
|
u: "http://www.basenotes.net/fragrancedirectory/?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.base-search.net",
|
|
r: 0,
|
|
s: "BASE Search",
|
|
sc: "Academic",
|
|
t: "basesearch",
|
|
u: "http://www.base-search.net/Search/Results?lookfor={{{s}}}&refid=duckduckgo",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "duckduckgo.com",
|
|
r: 7,
|
|
s: "Bash",
|
|
sc: "Programming",
|
|
t: "bash",
|
|
u: "http://duckduckgo.com/?q={{{s}}}+site:mywiki.wooledge.org,wiki.bash-hackers.org",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.basketball-reference.com",
|
|
r: 0,
|
|
s: "Basketball Reference",
|
|
sc: "Sports",
|
|
t: "basketballreference",
|
|
u: "https://www.basketball-reference.com/search/search.fcgi?hint=&search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "batman.wikia.com",
|
|
r: 0,
|
|
s: "Batman Wiki",
|
|
sc: "Comics",
|
|
t: "batman",
|
|
u: "http://batman.wikia.com/wiki/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "bato.to",
|
|
r: 42,
|
|
s: "Batoto",
|
|
sc: "Books",
|
|
t: "bato",
|
|
u: "http://bato.to/search?name={{{s}}}&name_cond=c",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "bato.to",
|
|
r: 0,
|
|
s: "Batoto",
|
|
sc: "Comics",
|
|
t: "batoto",
|
|
u: "http://bato.to/search?name={{{s}}}&name_cond=c",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "pokemongohub.net",
|
|
r: 0,
|
|
s: "Pokemon Go Hub Battledex",
|
|
sc: "Games (Pokemon)",
|
|
t: "battledex",
|
|
u: "https://pokemongohub.net/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "eu.battle.net",
|
|
r: 0,
|
|
s: "Battle.Net",
|
|
sc: "Games (general)",
|
|
t: "battlenet",
|
|
u: "http://eu.battle.net/en/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.bax-shop.nl",
|
|
r: 0,
|
|
s: "Bax-shop",
|
|
sc: "Online",
|
|
t: "bax",
|
|
u: "http://www.bax-shop.nl/assortiment?keyword={{{s}}}&avz=true",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "duckduckgo.com",
|
|
r: 0,
|
|
s: "Bay12Games",
|
|
sc: "Games (offline)",
|
|
t: "bay12",
|
|
u: "https://duckduckgo.com/?q={{{s}}}+site%3Abay12games.com",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.baygel.de",
|
|
r: 0,
|
|
s: "Baygel",
|
|
sc: "Online",
|
|
t: "baygel",
|
|
u: "https://www.baygel.de/baygel.php?query={{{s}}} ",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "bazar.bg",
|
|
r: 0,
|
|
s: "bazar.bg",
|
|
sc: "Online (marketplace)",
|
|
t: "bazarbg",
|
|
u: "https://bazar.bg/obiavi?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "cafebazaar.ir",
|
|
r: 0,
|
|
s: "CafeBazaar",
|
|
sc: "Online",
|
|
t: "bazar",
|
|
u: "http://cafebazaar.ir/search/?l=&q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "docs.bazel.build",
|
|
r: 0,
|
|
s: "bazel documentation",
|
|
sc: "Programming",
|
|
t: "bazel",
|
|
u: "https://docs.bazel.build/search.html?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.bazos.cz",
|
|
r: 16,
|
|
s: "Bazo\u0161.cz",
|
|
sc: "Online (deals)",
|
|
t: "bazos",
|
|
u: "http://www.bazos.cz/search.php?hledat={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.basketball-reference.com",
|
|
r: 9,
|
|
s: "Basketball Reference",
|
|
sc: "Reference",
|
|
t: "bballref",
|
|
u: "https://www.basketball-reference.com/search/search.fcgi?hint=&search={{{s}}}&pid=&idx= ",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "appworld.blackberry.com",
|
|
r: 0,
|
|
s: "BlackBerry App World",
|
|
sc: "Downloads (apps)",
|
|
t: "bbapps",
|
|
u: "http://appworld.blackberry.com/webstore/search/{{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.breitbart.com",
|
|
r: 0,
|
|
s: "Breitbart",
|
|
sc: "International",
|
|
t: "bbart",
|
|
u: "http://www.breitbart.com/search/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.bbb.org",
|
|
r: 4,
|
|
s: "Better Business Bureau",
|
|
sc: "Local",
|
|
t: "bbb",
|
|
u: "http://www.bbb.org/us/Find-Business-Reviews/name/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "bitbucket.org",
|
|
r: 32,
|
|
s: "Bitbucket",
|
|
sc: "Programming",
|
|
t: "bb",
|
|
u: "https://bitbucket.org/repo/all/?name={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.bbc.co.uk",
|
|
r: 685,
|
|
s: "BBC.co.uk",
|
|
sc: "International",
|
|
t: "bbc",
|
|
u: "http://www.bbc.co.uk/search/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.bbc.co.uk",
|
|
r: 3,
|
|
s: "BBC Food",
|
|
sc: "International",
|
|
t: "bbcfood",
|
|
u: "http://www.bbc.co.uk/food/recipes/search?keywords={{{s}}}&x=0&y=0",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.bbcgoodfood.com",
|
|
r: 0,
|
|
s: "BBC Good Food",
|
|
sc: "Food",
|
|
t: "bbcgf",
|
|
u: "http://www.bbcgoodfood.com/search/recipes?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.bbc.co.uk",
|
|
r: 0,
|
|
s: "BBC iPlayer",
|
|
sc: "TV",
|
|
t: "bbci",
|
|
u: "http://www.bbc.co.uk/iplayer/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.bbc.co.uk",
|
|
r: 0,
|
|
s: "BBC Mundo",
|
|
sc: "International",
|
|
t: "bbcm",
|
|
u: "http://www.bbc.co.uk/mundo/search/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.bbc.co.uk",
|
|
r: 0,
|
|
s: "BBC Music",
|
|
sc: "Music",
|
|
t: "bbcmusic",
|
|
u: "http://www.bbc.co.uk/music/search-results?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.bbc.co.uk",
|
|
r: 5,
|
|
s: "BBC News",
|
|
sc: "International",
|
|
t: "bbcnews",
|
|
u: "http://www.bbc.co.uk/search/news/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "search.bodybuilding.com",
|
|
r: 0,
|
|
s: "bodybuilding.com",
|
|
sc: "Online",
|
|
t: "bbcom",
|
|
u: "https://search.bodybuilding.com/slp/full?context=all&query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.bbc.co.uk",
|
|
r: 0,
|
|
s: "BBC Resources",
|
|
sc: "Reference",
|
|
t: "bbcr",
|
|
u: "http://www.bbc.co.uk/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "bitbucket.org",
|
|
r: 16,
|
|
s: "Bitbucket Code Search",
|
|
sc: "Programming",
|
|
t: "bbcs",
|
|
u: "https://bitbucket.org/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.bbc.co.uk",
|
|
r: 0,
|
|
s: "BBC Sport",
|
|
sc: "Sports",
|
|
t: "bbcsport",
|
|
u: "http://www.bbc.co.uk/search/sport/{{{s}}}?video=on&audio=on&text=on",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.bbc.co.uk",
|
|
r: 70,
|
|
s: "BBC Weather",
|
|
sc: "Weather",
|
|
t: "bbcw",
|
|
u: "https://www.bbc.co.uk/weather/search?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "developer.blackberry.com",
|
|
r: 0,
|
|
s: "BlackBerry Developer",
|
|
sc: "Libraries/Frameworks",
|
|
t: "bbdev",
|
|
u: "https://developer.blackberry.com/native/search/?search={{{s}}}&searchaction=Search",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.bbfc.co.uk",
|
|
r: 7,
|
|
s: "British Board of Film Classification",
|
|
sc: "Movies",
|
|
t: "bbfc",
|
|
u: "http://www.bbfc.co.uk/search/releases/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.bing.com",
|
|
r: 8248,
|
|
s: "Bing",
|
|
sc: "Search",
|
|
t: "b",
|
|
u: "https://www.bing.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "doc.babylonjs.com",
|
|
r: 0,
|
|
s: " Babylon.js documentation",
|
|
sc: "Programming",
|
|
t: "bbjs",
|
|
u: "https://doc.babylonjs.com/search/?bjsq={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "digital.bbm.usp.br",
|
|
r: 0,
|
|
s: "Biblioteca Brasiliana Guita e Jos\u00e9 Mindlin",
|
|
sc: "Academic",
|
|
t: "bbm",
|
|
u: "https://digital.bbm.usp.br/simple-search?location=&query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.bestbuy.com.mx",
|
|
r: 0,
|
|
s: "BestBuy M\u00e9xico",
|
|
sc: "Online",
|
|
t: "bbmx",
|
|
u: "https://www.bestbuy.com.mx/c/buscar-best-buy/buscar?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "bbqpitboys.com",
|
|
r: 0,
|
|
s: "BBQ Pit Boys",
|
|
sc: "Food",
|
|
t: "bbqpb",
|
|
u: "https://bbqpitboys.com/?s={{{s}}}&post_type=post",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.basketball-reference.com",
|
|
r: 100,
|
|
s: "Basketball-Reference ",
|
|
sc: "Reference",
|
|
t: "bbr",
|
|
u: "http://www.basketball-reference.com/player_search.cgi?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.baseball-reference.com",
|
|
r: 241,
|
|
s: "Baseball Reference",
|
|
sc: "Sports",
|
|
t: "bbref",
|
|
u: "https://www.baseball-reference.com/search/search.fcgi?hint=&search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.bbs-consultant.net",
|
|
r: 0,
|
|
s: "BBS Consultant",
|
|
sc: "Blogs",
|
|
t: "bbsfr",
|
|
u: "http://www.bbs-consultant.net/search/node/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.bbt.com",
|
|
r: 0,
|
|
s: "BB&T Bank",
|
|
sc: "Tools",
|
|
t: "bbt",
|
|
u: "https://www.bbt.com/search-results.html?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "bitbucket.org",
|
|
r: 0,
|
|
s: "Bitbucket User",
|
|
sc: "Programming",
|
|
t: "bbus",
|
|
u: "https://bitbucket.org/{{{s}}}/",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "digital.bbm.usp.br",
|
|
r: 0,
|
|
s: "Biblioteca Brasiliana Guita e Jos\u00e9 Mindiin",
|
|
sc: "Academic",
|
|
t: "bbusp",
|
|
u: "https://digital.bbm.usp.br/simple-search?location=&query= {{{s}}} &rpp=100",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.bestbuy.com",
|
|
r: 0,
|
|
s: "Best Buy",
|
|
sc: "Big box/department",
|
|
t: "bbuy",
|
|
u: "http://www.bestbuy.com/site/Brands/Apple/pcmcat128500050005.c?id=pcmcat128500050005&pageType=REDIRECT&issolr=1&searchterm={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.bestbuy.com",
|
|
r: 70,
|
|
s: "Bestbuy",
|
|
sc: "Tech",
|
|
t: "bby",
|
|
u: "http://www.bestbuy.com/site/olspage.jsp?id=pcat17071&type=page&st={{{s}}}&sc=Global&cp=1&nrp=15&sp=&qp=&list=n&iht=y&usc=All+Categories&ks=960",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "m.bestbuy.ca",
|
|
r: 9,
|
|
s: "Bestbuy.ca",
|
|
sc: "Big box/department",
|
|
t: "bbyc",
|
|
u: "https://m.bestbuy.ca/en-CA/search?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "bandcamp.com",
|
|
r: 208,
|
|
s: "Bandcamp",
|
|
sc: "Online (marketplace)",
|
|
t: "bcamp",
|
|
u: "https://bandcamp.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "bcb-atm.com",
|
|
r: 0,
|
|
s: "BCB ATM",
|
|
sc: "Companies",
|
|
t: "bcb-atm",
|
|
u: "https://bcb-atm.com/map?keyword={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "blockchain.info",
|
|
r: 13,
|
|
s: "Blockchain",
|
|
sc: "Online (marketplace)",
|
|
t: "bc",
|
|
u: "http://blockchain.info/search/{{{s}}} ",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.bcbsla.com",
|
|
r: 0,
|
|
s: "Blue Cross and Blue Shield of Louisiana",
|
|
sc: "Services",
|
|
t: "bcbsla",
|
|
u: "https://www.bcbsla.com/search/Results.aspx?k={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.bcc.nl",
|
|
r: 0,
|
|
s: "BCC",
|
|
sc: "Online",
|
|
t: "bcc",
|
|
u: "http://www.bcc.nl/search?fh_location=%2F%2Fcatalog01%2Fnl_NL%2Fchannel%3E%7Bm2ebcc2enl%7D&search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.bcdb.com",
|
|
r: 0,
|
|
s: "The Big Cartoon Database",
|
|
sc: "Movies",
|
|
t: "bcdb",
|
|
u: "http://www.bcdb.com/bcdb/search.cgi?query={{{s}}}&bool=and&substring=1",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "cn.bing.com",
|
|
r: 0,
|
|
s: "Bing dict",
|
|
sc: "Reference (words)",
|
|
t: "bce",
|
|
u: "https://cn.bing.com/dict/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "blockchain.info",
|
|
r: 0,
|
|
s: "blockchain.info",
|
|
sc: "Tools",
|
|
t: "bchain",
|
|
u: "https://blockchain.info/address/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "boston.craigslist.org",
|
|
r: 0,
|
|
s: "boston.craigslist.org",
|
|
sc: "Online",
|
|
t: "bcl",
|
|
u: "https://boston.craigslist.org/search/sss?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.brawlcustommusic.com",
|
|
r: 0,
|
|
s: "Brawl Custom Music",
|
|
sc: "Games (specific)",
|
|
t: "bcm",
|
|
u: "http://www.brawlcustommusic.com/index.php?song={{{s}}}&submit=Search",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "because.moe",
|
|
r: 0,
|
|
s: "because.moe",
|
|
sc: "TV",
|
|
t: "bcmoe",
|
|
u: "http://because.moe/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "boardcrewcial.org",
|
|
r: 0,
|
|
s: "Board Crucial dot Org",
|
|
sc: "Forum",
|
|
t: "bco",
|
|
u: "http://boardcrewcial.org/search/thread/{{{s}}}/",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "tools.ietf.org",
|
|
r: 0,
|
|
s: "Best Current Practices",
|
|
sc: "Programming",
|
|
t: "bcp",
|
|
u: "http://tools.ietf.org/html/bcp{{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "sitereview.bluecoat.com",
|
|
r: 0,
|
|
s: "BlueCoat Sitereview",
|
|
sc: "Search",
|
|
t: "bcsite",
|
|
u: "https://sitereview.bluecoat.com/sitereview.jsp#/?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.spca.bc.ca",
|
|
r: 0,
|
|
s: "BC SPCA",
|
|
sc: "Government",
|
|
t: "bcspca",
|
|
u: "http://www.spca.bc.ca/search.html?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "bandcamp.com",
|
|
r: 0,
|
|
s: "Bandcamp tags",
|
|
sc: "Music",
|
|
t: "bctag",
|
|
u: "http://bandcamp.com/tag/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "bct.comperio.it",
|
|
r: 0,
|
|
s: "Biblioteche civiche torinesi",
|
|
sc: "Learning",
|
|
t: "bct",
|
|
u: "http://bct.comperio.it/opac/search/lst?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.blockchainwalls.com",
|
|
r: 0,
|
|
s: "Blockchainwalls",
|
|
sc: "Specialty",
|
|
t: "bcwalls",
|
|
u: "https://www.blockchainwalls.com/category/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "boxcritters.wiki",
|
|
r: 0,
|
|
s: "Box Critters Wiki",
|
|
sc: "Games (specific)",
|
|
t: "bcw",
|
|
u: "https://boxcritters.wiki/?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "en.bitcoin.it",
|
|
r: 0,
|
|
s: "Bitcoin Wiki",
|
|
sc: "Programming",
|
|
t: "bcwiki",
|
|
u: "https://en.bitcoin.it/w/index.php?title=Special%3ASearch&search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.bing.com",
|
|
r: 0,
|
|
s: "Bing",
|
|
sc: "Search",
|
|
t: "bday",
|
|
u: 'https://www.bing.com/search?q={{{s}}}&filters=ex1%3a""ez1""',
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.baidu.com",
|
|
r: 103,
|
|
s: "baidu",
|
|
sc: "Search",
|
|
t: "bd",
|
|
u: "http://www.baidu.com/s?wd={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "baike.baidu.com",
|
|
r: 0,
|
|
s: "\u767e\u5ea6\u767e\u79d1",
|
|
sc: "Academic",
|
|
t: "bdbaike",
|
|
u: "https://baike.baidu.com/item/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "baddogbooks.com",
|
|
r: 0,
|
|
s: "Bad Dog Books",
|
|
sc: "Books",
|
|
t: "bdb",
|
|
u: "https://baddogbooks.com/?s={{{s}}}&post_type=product",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "wapbaike.baidu.com",
|
|
r: 0,
|
|
s: "BaiduBaike",
|
|
sc: "Learning",
|
|
t: "bdbk",
|
|
u: "https://wapbaike.baidu.com/search/word?word={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.bradsdeals.com",
|
|
r: 0,
|
|
s: "Brad's Deals",
|
|
sc: "Online (deals)",
|
|
t: "bdeals",
|
|
u: "http://www.bradsdeals.com/search?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "dict.tu-chemnitz.de",
|
|
r: 0,
|
|
s: "BEOLINGUS",
|
|
sc: "Search",
|
|
t: "bde",
|
|
u: "http://dict.tu-chemnitz.de/dings.cgi?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.bedetheque.com",
|
|
r: 0,
|
|
s: "Bedetheque",
|
|
sc: "Comics",
|
|
t: "bdg",
|
|
u: "http://www.bedetheque.com/search/tout?RechTexte={{{s}}}&RechWhere=0 ",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.bitdegree.org",
|
|
r: 0,
|
|
s: "BitDegree Online Courses",
|
|
sc: "Programming",
|
|
t: "bdgc",
|
|
u: "https://www.bitdegree.org/search?q={{{s}}}&src=ukw",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.bitdegree.org",
|
|
r: 0,
|
|
s: "BitDegree Learn",
|
|
sc: "Programming",
|
|
t: "bdgl",
|
|
u: "https://www.bitdegree.org/learn/search?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.leblogduhacker.fr",
|
|
r: 0,
|
|
s: "Le blog du hacker",
|
|
sc: "Blogs",
|
|
t: "bdh",
|
|
u: "http://www.leblogduhacker.fr/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "cn.bing.com",
|
|
r: 0,
|
|
s: "Bing \u8bcd\u5178",
|
|
sc: "Reference (words)",
|
|
t: "bdi",
|
|
u: "https://cn.bing.com/dict/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.boadica.com.br",
|
|
r: 0,
|
|
s: "Boa Dica",
|
|
sc: "Online (deals)",
|
|
t: "bdica",
|
|
u: "https://www.boadica.com.br/busca-resultado?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.businessdictionary.com",
|
|
r: 0,
|
|
s: "Business Dictionary",
|
|
sc: "Reference (words)",
|
|
t: "bdictionary",
|
|
u: "http://www.businessdictionary.com/search.php?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "image.baidu.com",
|
|
r: 0,
|
|
s: "\u767e\u5ea6\u56fe\u7247",
|
|
sc: "Images",
|
|
t: "bdimg",
|
|
u: "https://image.baidu.com/search/index?tn=baiduimage&ipn=r&ct=201326592&cl=2&lm=-1&st=-1&fm=index&fr=&hs=0&xthttps=111111&sf=1&fmq=&pv=&ic=0&nc=1&z=&se=1&showtab=0&fb=0&width=&height=&face=0&istype=2&ie=utf-8&word={{{s}}}&oq=test&rsp=-1",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "bdl.oqlf.gouv.qc.ca",
|
|
r: 0,
|
|
s: "Banque de d\u00e9pannage linguistique",
|
|
sc: "Reference (words intl)",
|
|
t: "bdl",
|
|
u: "http://bdl.oqlf.gouv.qc.ca/bdl/gabarit_bdl.asp?T1={{{s}}}&T3.x=0&T3.y=0",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "dblp.uni-trier.de",
|
|
r: 0,
|
|
s: "BDLP",
|
|
sc: "Academic (math/cs)",
|
|
t: "bdlp",
|
|
u: "http://dblp.uni-trier.de/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.bedetheque.com",
|
|
r: 0,
|
|
s: "B\u00e9d\u00e9th\u00e8que",
|
|
sc: "Comics",
|
|
t: "bdt",
|
|
u: "http://www.bedetheque.com/search/tout?RechTexte={{{s}}}&RechWhere=0",
|
|
},
|
|
{
|
|
c: "Translation",
|
|
d: "fanyi.baidu.com",
|
|
r: 0,
|
|
s: "\u767e\u5ea6\u7ffb\u8bd1",
|
|
sc: "General",
|
|
t: "bdtr",
|
|
u: "https://fanyi.baidu.com/#en/zh/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.beammachine.net",
|
|
r: 0,
|
|
s: "BeamMachine.net",
|
|
sc: "Search (non-US)",
|
|
t: "beam",
|
|
u: "http://www.beammachine.net/de/qsearch.php?q={{{s}}}&strict=1",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.beatport.com",
|
|
r: 30,
|
|
s: "Beatport",
|
|
sc: "Music",
|
|
t: "beatport",
|
|
u: "https://www.beatport.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.beautyheaven.com.au",
|
|
r: 0,
|
|
s: "Beautyheaven",
|
|
sc: "Topical",
|
|
t: "beautyheaven",
|
|
u: "https://www.beautyheaven.com.au/search?term={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "beautymnl.com",
|
|
r: 0,
|
|
s: "Beauty MNL",
|
|
sc: "Online",
|
|
t: "beautymnl",
|
|
u: "https://beautymnl.com/search?utf8=%E2%9C%93&q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.beautypedia.com",
|
|
r: 0,
|
|
s: "Beautypedia",
|
|
sc: "Topical",
|
|
t: "beautypedia",
|
|
u: "https://www.beautypedia.com/skin-care-reviews/?Ntt={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "blockexplorer.com",
|
|
r: 4,
|
|
s: "Block Explorer",
|
|
sc: "Tools",
|
|
t: "be",
|
|
u: "https://blockexplorer.com/searchgo/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "because.moe",
|
|
r: 0,
|
|
s: "because.moe",
|
|
sc: "Search",
|
|
t: "because",
|
|
u: "http://because.moe/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.bournemouthecho.co.uk",
|
|
r: 0,
|
|
s: "Bournemouth Echo",
|
|
sc: "Newspaper",
|
|
t: "becho",
|
|
u: "https://www.bournemouthecho.co.uk/search/?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "beck-online.beck.de",
|
|
r: 30,
|
|
s: "beck-online",
|
|
sc: "Law",
|
|
t: "beck",
|
|
u: "https://beck-online.beck.de/Search?words={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.beck-shop.de",
|
|
r: 0,
|
|
s: "beck-shop.de",
|
|
sc: "Online",
|
|
t: "beckshop",
|
|
u: "http://www.beck-shop.de/trefferliste.aspx?q={{{s}}}&action=search&page=0",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.bedbathandbeyond.com",
|
|
r: 0,
|
|
s: "Bed Bath and Beyond",
|
|
sc: "Online",
|
|
t: "bedbath",
|
|
u: "http://www.bedbathandbeyond.com/store/s/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.bedetheque.com",
|
|
r: 0,
|
|
s: "Bedeth\u00e8que",
|
|
sc: "Comics",
|
|
t: "bedetheque",
|
|
u: "http://www.bedetheque.com/search/tout?RechTexte={{{s}}}&RechWhere=0",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "bedrockgranitecompany.com",
|
|
r: 0,
|
|
s: "Bedrock Co.",
|
|
sc: "Services",
|
|
t: "bedrock",
|
|
u: "https://bedrockgranitecompany.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "beebom.com",
|
|
r: 0,
|
|
s: "Beebom",
|
|
sc: "Online",
|
|
t: "beebom",
|
|
u: "https://beebom.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.beeradvocate.com",
|
|
r: 0,
|
|
s: "BeerAdvocate",
|
|
sc: "Food",
|
|
t: "beeradvocate",
|
|
u: "https://www.beeradvocate.com/search/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "beeradvocate.com",
|
|
r: 0,
|
|
s: "BeerAdvocate",
|
|
sc: "Misc",
|
|
t: "beer",
|
|
u: "http://beeradvocate.com/search?q={{{s}}}&qt=beer",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "beets.readthedocs.io",
|
|
r: 0,
|
|
s: "Beets Documentation",
|
|
sc: "Music",
|
|
t: "beet",
|
|
u: "https://beets.readthedocs.io/en/latest/search.html?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "beewigs.com",
|
|
r: 0,
|
|
s: "Bees Beauty",
|
|
sc: "Online",
|
|
t: "beewigs",
|
|
u: "https://beewigs.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.beezer.com.au",
|
|
r: 0,
|
|
s: "Beezer",
|
|
sc: "Online",
|
|
t: "beezer",
|
|
u: "http://www.beezer.com.au/search?type=product&q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "beforeiplay.com",
|
|
r: 0,
|
|
s: "Before I Play",
|
|
sc: "Games (general)",
|
|
t: "beforeiplay",
|
|
u: "http://beforeiplay.com/index.php?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.begeek.fr",
|
|
r: 0,
|
|
s: "Begeek",
|
|
sc: "Newspaper",
|
|
t: "begeek",
|
|
u: "http://www.begeek.fr/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.behance.net",
|
|
r: 5,
|
|
s: "behance",
|
|
sc: "Design",
|
|
t: "behance",
|
|
u: "http://www.behance.net/search?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "surnames.behindthename.com",
|
|
r: 0,
|
|
s: "Beind the name - Surnames",
|
|
sc: "Reference (words)",
|
|
t: "behindsurname",
|
|
u: "http://surnames.behindthename.com/name/{{{s}}} ",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.behindthename.com",
|
|
r: 20,
|
|
s: "Behind the Name",
|
|
sc: "Reference (words)",
|
|
t: "behindthename",
|
|
u: "http://www.behindthename.com/name/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "beinsa.bg",
|
|
r: 0,
|
|
s: "beinsa.bg",
|
|
sc: "Books",
|
|
t: "beinsa",
|
|
u: "http://beinsa.bg/search.php?q={{{s}}}&submit=\u0422\u042a\u0420\u0421\u0418&s_type=all&id=&status=1",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "kgov.com",
|
|
r: 0,
|
|
s: "Bob Enyart Live",
|
|
sc: "Broadcast",
|
|
t: "bel",
|
|
u: "https://kgov.com/search?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.belkin.com",
|
|
r: 0,
|
|
s: "Belkin",
|
|
sc: "Tech",
|
|
t: "belkin",
|
|
u: "http://www.belkin.com/us/search?text={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.bell.ca",
|
|
r: 0,
|
|
s: "Bell",
|
|
sc: "Companies",
|
|
t: "bell",
|
|
u: "http://www.bell.ca/Search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.bellevuecollege.edu",
|
|
r: 0,
|
|
s: "Bellevue College",
|
|
sc: "Learning",
|
|
t: "bellevuecollege",
|
|
u: "http://www.bellevuecollege.edu/search/?txtQuery={{{s}}}&search=Search",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "bellissimi.bg",
|
|
r: 0,
|
|
s: "Bellissimi Jewelry BG",
|
|
sc: "Online",
|
|
t: "bellissimi.bg",
|
|
u: "http://bellissimi.bg/index.php?route=product/search&search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.belsimpel.nl",
|
|
r: 0,
|
|
s: "Belsimpel",
|
|
sc: "Tech",
|
|
t: "belsimpel",
|
|
u: "https://www.belsimpel.nl/zoeken?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "ben10.wikia.com",
|
|
r: 0,
|
|
s: "Ben 10 Wiki",
|
|
sc: "TV",
|
|
t: "ben10",
|
|
u: "http://ben10.wikia.com/wiki/Special:Search?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "bendixkingradios.com",
|
|
r: 0,
|
|
s: "bendixkingradios.com",
|
|
sc: "Tech",
|
|
t: "bendixking",
|
|
u: "https://bendixkingradios.com/catalogsearch/result/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "luzonmorningsun.com",
|
|
r: 0,
|
|
s: "Beneco",
|
|
sc: "Newspaper",
|
|
t: "beneco",
|
|
u: "http://luzonmorningsun.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
d: "dict.tu-chemnitz.de",
|
|
r: 4,
|
|
s: "Beolingus De-en",
|
|
t: "beo",
|
|
u: "http://dict.tu-chemnitz.de/dings.cgi?service=deen&query={{{s}}}",
|
|
},
|
|
{
|
|
d: "dict.tu-chemnitz.de",
|
|
r: 0,
|
|
s: "Beolingus De-es",
|
|
t: "beoes",
|
|
u: "http://dict.tu-chemnitz.de/dings.cgi?service=dees&query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "dict.tu-chemnitz.de",
|
|
r: 0,
|
|
s: "Beolingus",
|
|
sc: "Reference (words intl)",
|
|
t: "beolingus",
|
|
u: "http://dict.tu-chemnitz.de/dings.cgi?query={{{s}}}",
|
|
},
|
|
{
|
|
d: "dict.tu-chemnitz.de",
|
|
r: 0,
|
|
s: "Beolingus De-pt",
|
|
t: "beopt",
|
|
u: "http://dict.tu-chemnitz.de/dings.cgi?service=dept&query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.berekenhet.nl",
|
|
r: 0,
|
|
s: "BerekenHet",
|
|
sc: "Tools",
|
|
t: "berekenen",
|
|
u: "http://www.berekenhet.nl/zoeken.html?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.bergdorfgoodman.com",
|
|
r: 0,
|
|
s: "Bergdorf Goodman",
|
|
sc: "Online",
|
|
t: "bergdorf",
|
|
u: "http://www.bergdorfgoodman.com/search.jsp?N=0&Ntt={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.bergfex.com",
|
|
r: 0,
|
|
s: "bergfex",
|
|
sc: "Travel",
|
|
t: "bergfex",
|
|
u: "http://www.bergfex.com/sommer/suchen/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.bergfreunde.de",
|
|
r: 0,
|
|
s: "Bergfreunde",
|
|
sc: "Online",
|
|
t: "bergfreunde",
|
|
u: "http://www.bergfreunde.de/s/*/?searchparam={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "katasapa.com",
|
|
r: 0,
|
|
s: "katasapa.com",
|
|
sc: "Newspaper",
|
|
t: "berita",
|
|
u: "https://katasapa.com/vanessa?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "b.dk",
|
|
r: 0,
|
|
s: "Berlingske",
|
|
sc: "Newspaper",
|
|
t: "berlingske",
|
|
u: "http://b.dk/search/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.berlin.de",
|
|
r: 0,
|
|
s: "Berlin.de \u2013 Stadtplan",
|
|
sc: "Maps",
|
|
t: "berlinmap",
|
|
u: "http://www.berlin.de/stadtplan/?ADR_STREET={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "bermuda.io",
|
|
r: 0,
|
|
s: "Bermuda.io",
|
|
sc: "Reference",
|
|
t: "bermuda",
|
|
u: "http://bermuda.io/dataset?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "circoloberneri.indivia.net",
|
|
r: 0,
|
|
s: 'Circolo anarchico "C. Berneri"',
|
|
sc: "Local",
|
|
t: "berneri",
|
|
u: "http://circoloberneri.indivia.net/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.bertrand.pt",
|
|
r: 0,
|
|
s: "Livraria Bertrand",
|
|
sc: "Online (marketplace)",
|
|
t: "bertrand",
|
|
u: "https://www.bertrand.pt/pesquisa/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "berufenet.arbeitsagentur.de",
|
|
r: 0,
|
|
s: "BERUFENET - Berufsinformationen einfach finden",
|
|
sc: "Jobs",
|
|
t: "berufenet",
|
|
u: "https://berufenet.arbeitsagentur.de/berufenet/faces/index?path=null/suchergebnisse&such={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "conjugueur.bescherelle.com",
|
|
r: 0,
|
|
s: "Bescherelle",
|
|
sc: "Tools",
|
|
t: "besch",
|
|
u: "http://conjugueur.bescherelle.com/ConjugueurWeb/index.jsf?term={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.beslist.nl",
|
|
r: 0,
|
|
s: "BESLIST.nl",
|
|
sc: "Services",
|
|
t: "beslist",
|
|
u: "http://www.beslist.nl/products/r/{{{s}}}/",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.bestbuy.com",
|
|
r: 140,
|
|
s: "BestBuy",
|
|
sc: "Big box/department",
|
|
t: "bestbuy",
|
|
u: "http://www.bestbuy.com/site/olspage.jsp?id=pcat17071&type=page&st={{{s}}}&sc=Global&cp=1&nrp=15&sp=&qp=&list=n&iht=y&usc=All+Categories&ks=960",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.bestbuy.ca",
|
|
r: 8,
|
|
s: "Best Buy Canada",
|
|
sc: "Tech",
|
|
t: "bestbuyca",
|
|
u: "https://www.bestbuy.ca/en-ca/search?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.besteveralbums.com",
|
|
r: 0,
|
|
s: "Besteveralbum",
|
|
sc: "Music",
|
|
t: "besteveralbums",
|
|
u: "https://www.besteveralbums.com/search.php?s_o=all&s_q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.bestprice.gr",
|
|
r: 8,
|
|
s: "BestPrice",
|
|
sc: "Online (marketplace)",
|
|
t: "bestprice",
|
|
u: "http://www.bestprice.gr/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.bestsellinglover.com",
|
|
r: 0,
|
|
s: "BestsellingLover.com",
|
|
sc: "Online (marketplace)",
|
|
t: "bestsellinglover",
|
|
u: "https://www.bestsellinglover.com/search-now?controller=search&orderby=position&orderway=desc&search_query={{{s}}}&submit_search=",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "betalist.com",
|
|
r: 0,
|
|
s: "BetaList",
|
|
sc: "Startups",
|
|
t: "betalist",
|
|
u: "http://betalist.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.betches.com",
|
|
r: 0,
|
|
s: "Betches",
|
|
sc: "TV",
|
|
t: "betches",
|
|
u: "http://www.betches.com/search/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "betterworldbooks.com",
|
|
r: 0,
|
|
s: "betterworldbooks.com",
|
|
sc: "Online",
|
|
t: "betterworldbooks",
|
|
u: "https://betterworldbooks.com/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "bertholdsson.eu",
|
|
r: 0,
|
|
s: "Bertholdsson.eu",
|
|
sc: "Blogs",
|
|
t: "beu",
|
|
u: "https://bertholdsson.eu/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.bever.nl",
|
|
r: 3,
|
|
s: "Bever",
|
|
sc: "Online",
|
|
t: "bever",
|
|
u: "https://www.bever.nl/lister.html?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.bevmo.com",
|
|
r: 0,
|
|
s: "BevMo",
|
|
sc: "Big box/department",
|
|
t: "bevmo",
|
|
u: "http://www.bevmo.com/Shop/ProductList.aspx/_/D-{{{s}}}/N-/Ntt-{{{s}}}?DNID=Home&Dx=mode%2Bmatchany&fromsearch=true&Ntk=All&Ntx=mode%2Bmatchany",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "bevvy.co",
|
|
r: 0,
|
|
s: "Bevvy",
|
|
sc: "Food",
|
|
t: "bevvy",
|
|
u: "https://bevvy.co/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.buzzfeed.com",
|
|
r: 13,
|
|
s: "BuzzFeed",
|
|
sc: "Events",
|
|
t: "bf",
|
|
u: "http://www.buzzfeed.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.babelfish.de",
|
|
r: 0,
|
|
s: "babelfish.de",
|
|
sc: "Reference (words intl)",
|
|
t: "bfde",
|
|
u: "http://www.babelfish.de/dict?query={{{s}}}&src=auto&dst=en&submit=\u00fcbersetzen",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.bfi.org.uk",
|
|
r: 0,
|
|
s: "British Film Institute",
|
|
sc: "Movies",
|
|
t: "bfi",
|
|
u: "https://www.bfi.org.uk/search/search-bfi/{{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.bfm.my",
|
|
r: 0,
|
|
s: "BFM: The Business Radio Station",
|
|
sc: "Broadcast",
|
|
t: "bfm899",
|
|
u: "https://www.bfm.my/podcast.html?qseaid={{{s}}}&pseaid=latest&iseaid=all&dsseaid=&deseaid=&tag=&prg=",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.bergfex.at",
|
|
r: 18,
|
|
s: "Bergfex",
|
|
sc: "Weather",
|
|
t: "bfx",
|
|
u: "https://www.bergfex.at/suchen/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.biblegateway.com",
|
|
r: 206,
|
|
s: "BibleGateway",
|
|
sc: "Tools",
|
|
t: "bg",
|
|
u: "http://www.biblegateway.com/passage/?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.bankgirot.se",
|
|
r: 0,
|
|
s: "Bankgirot - Search Bankgiro number by Company Name",
|
|
sc: "Tools",
|
|
t: "bgc",
|
|
u: "https://www.bankgirot.se/en/sok-bg-nr/?company={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "billygraham.org",
|
|
r: 0,
|
|
s: "Billy Graham",
|
|
sc: "Reference (religion)",
|
|
t: "bgea",
|
|
u: "http://billygraham.org/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "boardgamegeek.com",
|
|
r: 2203,
|
|
s: "Board Game Geek",
|
|
sc: "Games (offline)",
|
|
t: "bgg",
|
|
u: "https://boardgamegeek.com/geeksearch.php?action=search&objecttype=boardgame&q={{{s}}}&B1=Go",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "boardgamegeek.com",
|
|
r: 0,
|
|
s: "na",
|
|
sc: "Online (marketplace)",
|
|
t: "bgggm",
|
|
u: "http://boardgamegeek.com/geekmarket/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.biblegateway.com",
|
|
r: 0,
|
|
s: "BibleGateway: King James Version",
|
|
sc: "Reference (religion)",
|
|
t: "bgkj",
|
|
u: "https://www.biblegateway.com/quicksearch/?quicksearch={{{s}}}&qs_version=KJV",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.biblegateway.com",
|
|
r: 35,
|
|
s: "BibleGateway: King James Version",
|
|
sc: "Reference (religion)",
|
|
t: "bgkjv",
|
|
u: "https://www.biblegateway.com/quicksearch/?quicksearch={{{s}}}&qs_version=KJV",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.babygearlab.com",
|
|
r: 0,
|
|
s: "Baby Gear Lab",
|
|
sc: "Services",
|
|
t: "bgl",
|
|
u: "https://www.babygearlab.com/search?ftr={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "bgm.tv",
|
|
r: 0,
|
|
s: "Bangumi \u756a\u7ec4\u8ba1\u5212",
|
|
sc: "Tools",
|
|
t: "bgm",
|
|
u: "https://bgm.tv/subject_search/{{{s}}}?cat=all",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.bankgirot.se",
|
|
r: 0,
|
|
s: "Bankgirot - Search Bankgiro number",
|
|
sc: "Tools",
|
|
t: "bgn",
|
|
u: "https://www.bankgirot.se/en/sok-bg-nr/?bgnr={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.bankgirot.se",
|
|
r: 0,
|
|
s: "Bankgirot - Search Bankgiro number by Organization Number",
|
|
sc: "Tools",
|
|
t: "bgo",
|
|
u: "https://www.bankgirot.se/en/sok-bg-nr/?orgnr={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "bgp.he.net",
|
|
r: 52,
|
|
s: "Hurricane Electrics Internet Services",
|
|
sc: "Sysadmin (network)",
|
|
t: "bgp",
|
|
u: "http://bgp.he.net/search?search%5Bsearch%5D={{{s}}}&commit=Search",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "boardgameprices.co.uk",
|
|
r: 4,
|
|
s: "BoardGamePrices",
|
|
sc: "Online (deals)",
|
|
t: "bgpuk",
|
|
u: "https://boardgameprices.co.uk/item/search?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.boardgamesearch.com.au",
|
|
r: 0,
|
|
s: "Board Game Search (Australia)",
|
|
sc: "Online",
|
|
t: "bgs",
|
|
u: "http://www.boardgamesearch.com.au/#!/search/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "bgunikat.eu",
|
|
r: 0,
|
|
s: "Sterling silver jewelry",
|
|
sc: "Online (marketplace)",
|
|
t: "bgunikat",
|
|
u: "https://bgunikat.eu/index.php?route=product/search&search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.biblegateway.com",
|
|
r: 45,
|
|
s: "BibleGateway",
|
|
sc: "Reference (religion)",
|
|
t: "bgw",
|
|
u: "http://www.biblegateway.com/keyword/?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "biblehub.net",
|
|
r: 0,
|
|
s: "BibleHub",
|
|
sc: "Academic",
|
|
t: "bhb",
|
|
u: "http://biblehub.net/search.php?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.bhphotovideo.com",
|
|
r: 265,
|
|
s: "B&H Photo Video",
|
|
sc: "Big box/department",
|
|
t: "bh",
|
|
u: "http://www.bhphotovideo.com/c/search?Ntt={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.bhive.org",
|
|
r: 0,
|
|
s: "bhive.org",
|
|
sc: "Real Estate",
|
|
t: "bhive",
|
|
u: "https://www.bhive.org/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.british-history.ac.uk",
|
|
r: 0,
|
|
s: "British History Online",
|
|
sc: "Academic",
|
|
t: "bho",
|
|
u: "http://www.british-history.ac.uk/search?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.bhphotovideo.com",
|
|
r: 0,
|
|
s: "B&H Photo Video",
|
|
sc: "Online",
|
|
t: "bhphotovideo",
|
|
u: "https://www.bhphotovideo.com/c/search?Ntt={{{s}}}&N=0&InitialSearch=yes&sts=ma&typedValue=&Top+Nav-Search=",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "baheth.info",
|
|
r: 0,
|
|
s: "Baheth.info",
|
|
sc: "Reference (words)",
|
|
t: "bht",
|
|
u: "http://baheth.info/all.jsp?term={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.biblestudytools.com",
|
|
r: 0,
|
|
s: "BibleStudyTools Encyclopedias",
|
|
sc: "Reference (religion)",
|
|
t: "biben",
|
|
u: "http://www.biblestudytools.com/search/?s=references&q={{{s}}}&rc=ENC&rc2=",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "opac.uni-erfurt.de",
|
|
r: 0,
|
|
s: "Katalog der Universit\u00e4ts- und Forschungsbibliothek Erfurt/Gotha",
|
|
sc: "Academic",
|
|
t: "biberfurt",
|
|
u: "http://opac.uni-erfurt.de/DB=1/SET=3/TTL=11/CMD?ACT=SRCHA&IKT=1016&SRT=YOP&TRM={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "zoeken.gent.bibliotheek.be",
|
|
r: 0,
|
|
s: "Bibliotheek Gent",
|
|
sc: "Books",
|
|
t: "bibgent",
|
|
u: "http://zoeken.gent.bibliotheek.be/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "biblehub.net",
|
|
r: 0,
|
|
s: "BibleHub",
|
|
sc: "Learning (intl)",
|
|
t: "bibhub",
|
|
u: "http://biblehub.net/search.php?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.bing.com",
|
|
r: 2157,
|
|
s: "Bing Images",
|
|
sc: "Search",
|
|
t: "bi",
|
|
u: "https://www.bing.com/images/search?q={{{s}}}&go=&form=QBIL&qs=n",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "biblehub.net",
|
|
r: 0,
|
|
s: "Bible Atlas",
|
|
sc: "Reference (religion)",
|
|
t: "bibleatlas",
|
|
u: "http://biblehub.net/searchatlas.php?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.biblegateway.com",
|
|
r: 280,
|
|
s: "BibleGateway",
|
|
sc: "Reference (religion)",
|
|
t: "bible",
|
|
u: "http://www.biblegateway.com/keyword/?search={{{s}}}&searchtype=all",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.bible.com",
|
|
r: 0,
|
|
s: "Bible YouVersion",
|
|
sc: "Reference (religion)",
|
|
t: "biblecom",
|
|
u: "https://www.bible.com/search/bible?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.biblegateway.com",
|
|
r: 17,
|
|
s: "BibleGateway",
|
|
sc: "Reference (religion)",
|
|
t: "biblegateway",
|
|
u: "http://www.biblegateway.com/keyword/?search={{{s}}}&version1=47&searchtype=all",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "biblemenus.com",
|
|
r: 5,
|
|
s: "BibleHub",
|
|
sc: "Academic",
|
|
t: "biblehub",
|
|
u: "http://biblemenus.com/search.php?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "bibleserver.com",
|
|
r: 0,
|
|
s: "bibleserver.com",
|
|
sc: "Tools",
|
|
t: "bibleserver",
|
|
u: "http://bibleserver.com/search/LUT/{{{s}}}/1",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.biblestudytools.com",
|
|
r: 0,
|
|
s: "Bible Study Tools",
|
|
sc: "Reference (religion)",
|
|
t: "bibletools",
|
|
u: "http://www.biblestudytools.com/search/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.biblija.net",
|
|
r: 0,
|
|
s: "Biblija.net",
|
|
sc: "Reference (religion)",
|
|
t: "biblija",
|
|
u: "http://www.biblija.net/biblija.cgi?m={{{s}}} ",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "biblio.com",
|
|
r: 8,
|
|
s: "Biblio",
|
|
sc: "Online (marketplace)",
|
|
t: "biblio",
|
|
u: "http://biblio.com/search.php?keyisbn={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "milano.biblioteche.it",
|
|
r: 0,
|
|
s: "Sistema Bibliotecario di Milano",
|
|
sc: "Books",
|
|
t: "bibliomi",
|
|
u: "https://milano.biblioteche.it/opac/search/lst?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.biblionetka.pl",
|
|
r: 0,
|
|
s: "Biblionetka.pl",
|
|
sc: "Books",
|
|
t: "biblionetka",
|
|
u: "http://www.biblionetka.pl/search.aspx?searchType=book_catalog&searchPhrase={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "bibliotek.dk",
|
|
r: 0,
|
|
s: "Bibliotek.dk",
|
|
sc: "Reference",
|
|
t: "bibliotek",
|
|
u: "https://bibliotek.dk/search/work/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "bibliotek.kavlinge.se",
|
|
r: 0,
|
|
s: "K\u00e4vlinge Bibliotek",
|
|
sc: "Books",
|
|
t: "bibliotekkavlinge",
|
|
u: "http://bibliotek.kavlinge.se/search?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.bibleserver.com",
|
|
r: 0,
|
|
s: "Bibleserver",
|
|
sc: "Tools",
|
|
t: "biblsrv",
|
|
u: "http://www.bibleserver.com/search/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.biblionet.gr",
|
|
r: 0,
|
|
s: "BiblioNet",
|
|
sc: "Tools",
|
|
t: "bibnet",
|
|
u: "http://www.biblionet.gr/main.asp?page=results&key={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "bibliotheques.paris.fr",
|
|
r: 0,
|
|
s: "catalogue des biblioth\u00e8ques de Paris",
|
|
sc: "Books",
|
|
t: "bibparis",
|
|
u: "https://bibliotheques.paris.fr/Default/search.aspx?SC=CATALOGUE&QUERY={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.bibsonomy.org",
|
|
r: 0,
|
|
s: "BibSonomy",
|
|
sc: "Academic",
|
|
t: "bibsonomy",
|
|
u: "http://www.bibsonomy.org/search/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "onesearch.unipi.it",
|
|
r: 0,
|
|
s: "Onesearch Unipi",
|
|
sc: "Academic",
|
|
t: "bibunipi",
|
|
u: "http://onesearch.unipi.it/primo_library/libweb/action/search.do?fn=search&ct=search&initialSearch=true&mode=Basic&tab=default_tab&indx=1&dum=true&srt=rank&vid=39UPI_V1&frbg=&tb=t&vl(freeText0)={{{s}}}&scp.scps=scope%3A(39UPI)%2C39UPI_EbscoLocal%2Cprimo_central_multiple_fe",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "bitinfocharts.com",
|
|
r: 0,
|
|
s: "BitInfoCharts",
|
|
sc: "Cryptocurrency",
|
|
t: "bich",
|
|
u: "https://bitinfocharts.com/comparison/marketcap-{{{s}}}.html#log",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.bidorbuy.co.za",
|
|
r: 0,
|
|
s: "bidorbuy",
|
|
sc: "Online (marketplace)",
|
|
t: "bidorbuy",
|
|
u: "http://www.bidorbuy.co.za/search/{{{s}}} ",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "bidvoy.net",
|
|
r: 0,
|
|
s: "Bidvoy",
|
|
sc: "Online (deals)",
|
|
t: "bidvoy",
|
|
u: "http://bidvoy.net/%22{{{s}}} ",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "bioinfo-fr.net",
|
|
r: 0,
|
|
s: "Bioinfo-fr",
|
|
sc: "Blogs",
|
|
t: "bifr",
|
|
u: "http://bioinfo-fr.net/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "bigbasket.com",
|
|
r: 0,
|
|
s: "BigBasket",
|
|
sc: "Online",
|
|
t: "bigbasket",
|
|
u: "http://bigbasket.com/ps/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "bigenc.ru",
|
|
r: 0,
|
|
s: "\u0411\u043e\u043b\u044c\u0448\u0430\u044f \u0440\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u044d\u043d\u0446\u0438\u043a\u043b\u043e\u043f\u0435\u0434\u0438\u044f",
|
|
sc: "Reference",
|
|
t: "bigenc",
|
|
u: "https://bigenc.ru/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.bigfishgames.com",
|
|
r: 0,
|
|
s: "Big Fish Games",
|
|
sc: "Games (specific)",
|
|
t: "bigfish",
|
|
u: "http://www.bigfishgames.com/download-games/search.html?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "bigfuture.collegeboard.org",
|
|
r: 0,
|
|
s: "BigFuture",
|
|
sc: "Academic",
|
|
t: "bigfuture",
|
|
u: "https://bigfuture.collegeboard.org/sitesearch?searchType=bf_site&tp=bf&q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "words.bighugelabs.com",
|
|
r: 0,
|
|
s: "Big Huge Thesaurus",
|
|
sc: "Reference (words)",
|
|
t: "bighuge",
|
|
u: "http://words.bighugelabs.com/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.bigoven.com",
|
|
r: 0,
|
|
s: "BigOven",
|
|
sc: "Food",
|
|
t: "bigoven",
|
|
u: "http://www.bigoven.com/recipes/{{{s}}}/best",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.bigstockphoto.com",
|
|
r: 0,
|
|
s: "Bigstock",
|
|
sc: "Online (marketplace)",
|
|
t: "bigstock",
|
|
u: "http://www.bigstockphoto.com/search/{{{s}}}/",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.bigw.com.au",
|
|
r: 0,
|
|
s: "Big W",
|
|
sc: "Big box/department",
|
|
t: "bigw",
|
|
u: "https://www.bigw.com.au/search/?text={{{s}}}&category=",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www5.bigwords.com",
|
|
r: 0,
|
|
s: "BigWords.com",
|
|
sc: "Services",
|
|
t: "bigwords",
|
|
u: "http://www5.bigwords.com/search/easy-search/?producttype=all&searchtype=isbn&searchstring={{{s}}}&buySell=",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.debijbel.nl",
|
|
r: 0,
|
|
s: "De Bijbel",
|
|
sc: "Reference (religion)",
|
|
t: "bijbel",
|
|
u: "https://www.debijbel.nl/zoeken/?q={{{s}}}&v=NBV&t=bible",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.bike24.com",
|
|
r: 6,
|
|
s: "Bike24",
|
|
sc: "Online",
|
|
t: "bike24",
|
|
u: "https://www.bike24.com/1.php?content=13&search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.bike-discount.de",
|
|
r: 0,
|
|
s: "Bike-Discount",
|
|
sc: "Online (marketplace)",
|
|
t: "bikedsct",
|
|
u: "https://www.bike-discount.de/de/suche?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "bikenet.nl",
|
|
r: 0,
|
|
s: "Bikenet",
|
|
sc: "Online",
|
|
t: "bikenet",
|
|
u: "https://bikenet.nl/occasions/?zoeken={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "sheldonbrown.com",
|
|
r: 0,
|
|
s: "Sheldon Brown's Bicycle Technical Info",
|
|
sc: "Reference",
|
|
t: "bike",
|
|
u: "http://sheldonbrown.com/searchResults.html?cx=partner-pub-1229949690989515%3A1174459614&cof=FORID%3A10&q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.billiger.de",
|
|
r: 5,
|
|
s: "Billiger.de",
|
|
sc: "Services",
|
|
t: "bil",
|
|
u: "https://www.billiger.de/search?searchstring={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "search.bilibili.com",
|
|
r: 116,
|
|
s: "bilibili",
|
|
sc: "Video",
|
|
t: "bilibili",
|
|
u: "http://search.bilibili.com/all?keyword={{{s}}} ",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.bilibili.com",
|
|
r: 123,
|
|
s: "bilibili",
|
|
sc: "Video",
|
|
t: "bili",
|
|
u: "http://www.bilibili.com/search?keyword={{{s}}}:",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.bilka.dk",
|
|
r: 0,
|
|
s: "Bilka",
|
|
sc: "Online (marketplace)",
|
|
t: "bilka",
|
|
u: "https://www.bilka.dk/s%C3%B8g?tekst={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.billiger.de",
|
|
r: 0,
|
|
s: "Billiger.de",
|
|
sc: "Services",
|
|
t: "billiger",
|
|
u: "https://www.billiger.de/search?searchstring={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "billygraham.org",
|
|
r: 0,
|
|
s: "Billy Graham",
|
|
sc: "Reference (religion)",
|
|
t: "billygraham",
|
|
u: "https://billygraham.org/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.bilpriser.se",
|
|
r: 0,
|
|
s: "Bilpriser",
|
|
sc: "Services",
|
|
t: "bilpriser",
|
|
u: "http://www.bilpriser.se/bilvardering?regnr={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.biltema.se",
|
|
r: 0,
|
|
s: "Biltema",
|
|
sc: "Big box/department",
|
|
t: "biltema",
|
|
u: "http://www.biltema.se/sv/Sok/?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "biluppgifter.se",
|
|
r: 0,
|
|
s: "Biluppgifter",
|
|
sc: "Reference (fun)",
|
|
t: "biluppg",
|
|
u: "https://biluppgifter.se/fordon/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.bing.com",
|
|
r: 59,
|
|
s: "Bing Images",
|
|
sc: "Search",
|
|
t: "bimages",
|
|
u: "https://www.bing.com/images/search?q={{{s}}}&go=&form=QBIL&qs=n",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.bing.com",
|
|
r: 18,
|
|
s: "Bing Images",
|
|
sc: "Images",
|
|
t: "bim",
|
|
u: "https://www.bing.com/images/search?q={{{s}}}&go=&form=QBIL&qs=n",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "bin.arnastofnun.is",
|
|
r: 13,
|
|
s: "Beygingarl\u00fdsing \u00edslensks n\u00fat\u00edmam\u00e1ls",
|
|
sc: "Search",
|
|
t: "bin",
|
|
u: "http://bin.arnastofnun.is/leit/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.bing.com",
|
|
r: 1409,
|
|
s: "Bing",
|
|
sc: "Search",
|
|
t: "bing",
|
|
u: "https://www.bing.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.bing.com",
|
|
r: 0,
|
|
s: "Bing Animated Images (GiFs)",
|
|
sc: "Images",
|
|
t: "binggif",
|
|
u: "http://www.bing.com/images/search?&q={{{s}}}&qft=+filterui:photo-animatedgif&FORM=R5IR25",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.bing.com",
|
|
r: 25,
|
|
s: "Bing Images",
|
|
sc: "Search",
|
|
t: "bingimages",
|
|
u: "https://www.bing.com/images/search?q={{{s}}}&go=&form=QBIL&qs=n",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.bing.com",
|
|
r: 7,
|
|
s: "Bing Maps",
|
|
sc: "Search",
|
|
t: "bingmaps",
|
|
u: "https://www.bing.com/maps/?q={{{s}}}&obox=1",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "bing.co.uk",
|
|
r: 0,
|
|
s: "Bing UK",
|
|
sc: "Search (non-US)",
|
|
t: "Binguk",
|
|
u: "http://bing.co.uk/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.bing.com",
|
|
r: 38,
|
|
s: "Bing",
|
|
sc: "Search",
|
|
t: "bingvideos",
|
|
u: "https://www.bing.com/videos/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.binnys.com",
|
|
r: 0,
|
|
s: "Binny's Beverage Depot",
|
|
sc: "Online",
|
|
t: "binnys",
|
|
u: "http://www.binnys.com/all/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "bintray.com",
|
|
r: 0,
|
|
s: "JFrog Bintray",
|
|
sc: "Libraries/Frameworks",
|
|
t: "bintray",
|
|
u: "https://bintray.com/search?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.biohelp-profi.at",
|
|
r: 0,
|
|
s: "biohelp",
|
|
sc: "Online",
|
|
t: "biobelp",
|
|
u: "https://www.biohelp-profi.at/store-search-result.php?keywords={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.biography.com",
|
|
r: 0,
|
|
s: "Biography",
|
|
sc: "Academic",
|
|
t: "bio",
|
|
u: "http://www.biography.com/search?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "bioconductor.org",
|
|
r: 0,
|
|
s: "Bioconductor",
|
|
sc: "Academic",
|
|
t: "bioc",
|
|
u: "http://bioconductor.org/help/search/index.html?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.biography.com",
|
|
r: 0,
|
|
s: "Biography",
|
|
sc: "Reference",
|
|
t: "biography",
|
|
u: "https://www.biography.com/search?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "thebiogrid.org",
|
|
r: 0,
|
|
s: "BioGRID",
|
|
sc: "Academic",
|
|
t: "biogrid",
|
|
u: "http://thebiogrid.org/search.php?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "allyouneedisbiology.wordpress.com",
|
|
r: 0,
|
|
s: "All You Need Is Biology",
|
|
sc: "Learning",
|
|
t: "biology",
|
|
u: "https://allyouneedisbiology.wordpress.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.biology-online.org",
|
|
r: 0,
|
|
s: "Biology Online",
|
|
sc: "Reference (science)",
|
|
t: "bio-online",
|
|
u: "http://www.biology-online.org/search.php?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "biorxiv.org",
|
|
r: 4,
|
|
s: "bioRxiv",
|
|
sc: "Academic",
|
|
t: "biorxiv",
|
|
u: "http://biorxiv.org/search/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.bing.com",
|
|
r: 0,
|
|
s: "Bing Reverse Image Search",
|
|
sc: "Search",
|
|
t: "bir",
|
|
u: "https://www.bing.com/images/search?q=imgurl:{{{s}}}&view=detailv2&iss=sbi&FORM=IRSBIQ#enterInsights",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.allaboutbirds.org",
|
|
r: 0,
|
|
s: "All About Birds",
|
|
sc: "Reference (science)",
|
|
t: "bird",
|
|
u: "https://www.allaboutbirds.org/search/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.allaboutbirds.org",
|
|
r: 0,
|
|
s: "Cornell Lab of Ornithology",
|
|
sc: "Reference (science)",
|
|
t: "birds",
|
|
u: "https://www.allaboutbirds.org/search/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.birikimdergisi.com",
|
|
r: 0,
|
|
s: "Birikim Dergisi",
|
|
sc: "Magazine",
|
|
t: "birikim",
|
|
u: "http://www.birikimdergisi.com/arama/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.bisafans.de",
|
|
r: 0,
|
|
s: "https://www.bisafans.de/",
|
|
sc: "Search",
|
|
t: "bisa",
|
|
u: "https://www.bisafans.de/suchbisa.php?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "bookprice.co",
|
|
r: 0,
|
|
s: "BookPrice",
|
|
sc: "Online",
|
|
t: "bisbn",
|
|
u: "http://bookprice.co/isbn/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.bisp-surf.de",
|
|
r: 0,
|
|
s: "Bisp-Surf",
|
|
sc: "Health",
|
|
t: "bisp",
|
|
u: "https://www.bisp-surf.de/Search/Results?type=AllFields&lookfor={{{s}}}&submit=Suchen&limit=20&sort=relevance",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "bitaps.com",
|
|
r: 0,
|
|
s: "Bitaps",
|
|
sc: "Online",
|
|
t: "bitaps",
|
|
u: "https://bitaps.com/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "bitbucket.org",
|
|
r: 19,
|
|
s: "BitBucket.org",
|
|
sc: "Tools",
|
|
t: "bitbucket",
|
|
u: "http://bitbucket.org/repo/all/?name={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.bitchute.com",
|
|
r: 0,
|
|
s: "BitChute",
|
|
sc: "Video",
|
|
t: "bitc",
|
|
u: "https://www.bitchute.com/search/?q={{{s}}}&sort=date_created+desc",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.bitchute.com",
|
|
r: 0,
|
|
s: "BitChute",
|
|
sc: "Video",
|
|
t: "bitch",
|
|
u: "https://www.bitchute.com/search/?q={{{s}}}&sort=date_created+desc",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.bitchute.com",
|
|
r: 28,
|
|
s: "www.bitchute.com",
|
|
sc: "Misc",
|
|
t: "bitchute",
|
|
u: "https://www.bitchute.com/search/?q={{{s}}}&sort=date_created+desc",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "blockchain.info",
|
|
r: 3,
|
|
s: "Blockchain.info",
|
|
sc: "Tools",
|
|
t: "bitcoin",
|
|
u: "https://blockchain.info/search?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.bbc.co.uk",
|
|
r: 0,
|
|
s: "BBC GCSE Bitesize",
|
|
sc: "Academic",
|
|
t: "bitesizegcse",
|
|
u: "http://www.bbc.co.uk/schools/gcsebitesize/search/index.shtml?scope=gcsebitesize_include&q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "wiki.bitlair.nl",
|
|
r: 0,
|
|
s: "bitlair",
|
|
sc: "Blogs",
|
|
t: "bitlair",
|
|
u: "https://wiki.bitlair.nl/index.php?title=Special%3ASearch&search={{{s}}}&go=Go",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "bitly.com",
|
|
r: 0,
|
|
s: "Bitly",
|
|
sc: "Tools (URLs)",
|
|
t: "bitly",
|
|
u: "https://bitly.com/?url={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "bitref.com",
|
|
r: 0,
|
|
s: "bitref",
|
|
sc: "Cryptocurrency",
|
|
t: "bitref",
|
|
u: "https://bitref.com/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "bittrust.org",
|
|
r: 0,
|
|
s: "BitTrust",
|
|
sc: "Tools",
|
|
t: "bittrust",
|
|
u: "http://bittrust.org/search#stq={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.bitview.net",
|
|
r: 0,
|
|
s: "BitView",
|
|
sc: "Video",
|
|
t: "bitview",
|
|
u: "http://www.bitview.net/results.php?search={{{s}}}&t=Search+Videos",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "search.bivol.bg",
|
|
r: 0,
|
|
s: "bivol.bg",
|
|
sc: "Government",
|
|
t: "bivol",
|
|
u: "https://search.bivol.bg/?q={{{s}}}#results",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.businessdictionary.com",
|
|
r: 0,
|
|
s: "Business Dictionary",
|
|
sc: "Reference (words)",
|
|
t: "bizdic",
|
|
u: "http://www.businessdictionary.com/search.php?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "bizgift.vn",
|
|
r: 0,
|
|
s: "Bizgift.vn",
|
|
sc: "Services",
|
|
t: "bizgift",
|
|
u: "https://bizgift.vn/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "incfact.com",
|
|
r: 0,
|
|
s: "IncFact",
|
|
sc: "Academic",
|
|
t: "biz",
|
|
u: "https://incfact.com/company/search/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.biznar.com",
|
|
r: 0,
|
|
s: "Biznar",
|
|
sc: "Search",
|
|
t: "biznar",
|
|
u: "http://www.biznar.com/biznar/result-list/fullRecord:{{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.bizrate.com",
|
|
r: 0,
|
|
s: "Bizrate",
|
|
sc: "Online",
|
|
t: "bizrate",
|
|
u: "http://www.bizrate.com/classify?search_box=1&keyword={{{s}}}&originalKeyword=&SEARCH_GO=",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.bjjheroes.com",
|
|
r: 0,
|
|
s: "BJJ Heroes",
|
|
sc: "Sports",
|
|
t: "bjj",
|
|
u: "https://www.bjjheroes.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.bjp.org",
|
|
r: 0,
|
|
s: "BJP",
|
|
sc: "International",
|
|
t: "bjp",
|
|
u: "http://www.bjp.org/?searchword={{{s}}}&searchphrase=exact&limit=20&ordering=newest&view=search&option=com_search",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.bookadda.com",
|
|
r: 0,
|
|
s: "BookAdda",
|
|
sc: "Online",
|
|
t: "bkadda",
|
|
u: "http://www.bookadda.com/general-search?searchkey={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.bluekangaroo.com",
|
|
r: 0,
|
|
s: "Blue Kangaroo",
|
|
sc: "Online (deals)",
|
|
t: "bk",
|
|
u: "https://www.bluekangaroo.com/products?term={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "search.bangkokpost.com",
|
|
r: 0,
|
|
s: "Bangkok Post",
|
|
sc: "Newspaper",
|
|
t: "bkkpost",
|
|
u: "https://search.bangkokpost.com/search/result_advanced?category=all&xChannel=&q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "search.books.com.tw",
|
|
r: 0,
|
|
s: "\u535a\u5ba2\u4f86",
|
|
sc: "Online (marketplace)",
|
|
t: "bkl",
|
|
u: "http://search.books.com.tw/search/query/key/{{{s}}}/cat/all",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "bendixkingradios.com",
|
|
r: 0,
|
|
s: "bendixkingradios.com",
|
|
sc: "Tech",
|
|
t: "bkradio",
|
|
u: "https://bendixkingradios.com/catalogsearch/result/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.basketball-reference.com",
|
|
r: 31,
|
|
s: "Basketball Reference",
|
|
sc: "Reference",
|
|
t: "bkr",
|
|
u: "http://www.basketball-reference.com/player_search.cgi?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.basketball-reference.com",
|
|
r: 97,
|
|
s: "Basketball Reference",
|
|
sc: "Sports",
|
|
t: "bkref",
|
|
u: "http://www.basketball-reference.com/search/search.fcgi?hint={{{s}}}&search={{{s}}}&pid=&idx=",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.bookshare.org",
|
|
r: 0,
|
|
s: "Bookshare.org",
|
|
sc: "Learning",
|
|
t: "bkshare",
|
|
u: "https://www.bookshare.org/search?keyword={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.blablacar.fr",
|
|
r: 0,
|
|
s: "BlaBlaCar",
|
|
sc: "Services",
|
|
t: "blablacar",
|
|
u: "https://www.blablacar.fr/trajets/vers-{{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "blackle.com",
|
|
r: 0,
|
|
s: "blackle",
|
|
sc: "Google",
|
|
t: "bla",
|
|
u: "http://blackle.com/results/?cx=partner-pub-8993703457585266%3A4862972284&cof=FORID%3A10&ie=UTF-8&q= {{{s}}}&sa=+#gsc.tab=0&gsc.q= {{{s}}}&gsc.page=1",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.blackbookmag.com",
|
|
r: 0,
|
|
s: "BlackBook",
|
|
sc: "Blogs",
|
|
t: "blackbook",
|
|
u: "http://www.blackbookmag.com/search/articles#keywords:{{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.blackbookmag.com",
|
|
r: 0,
|
|
s: "BlackBook",
|
|
sc: "Blogs",
|
|
t: "blackbookmag",
|
|
u: "http://www.blackbookmag.com/search/articles#keywords:{{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "mxtoolbox.com",
|
|
r: 0,
|
|
s: "MXToolbox",
|
|
sc: "Domains",
|
|
t: "blacklist",
|
|
u: "http://mxtoolbox.com/SuperTool.aspx?action=blacklist%3a{{{s}}}&run=toolpage",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "blackwells.co.uk",
|
|
r: 12,
|
|
s: "Blackwell's",
|
|
sc: "Online",
|
|
t: "blackwells",
|
|
u: "https://blackwells.co.uk/bookshop/search/?keyword={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.bladehq.com",
|
|
r: 4,
|
|
s: "BladeHQ",
|
|
sc: "Online",
|
|
t: "bladehq",
|
|
u: "https://www.bladehq.com/?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "bland.is",
|
|
r: 0,
|
|
s: "Bland.is",
|
|
sc: "Online (marketplace)",
|
|
t: "bland",
|
|
u: "https://bland.is/classified/default.aspx?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.theblaze.com",
|
|
r: 0,
|
|
s: "The Blaze",
|
|
sc: "Broadcast",
|
|
t: "blaze",
|
|
u: "http://www.theblaze.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.blb.org",
|
|
r: 129,
|
|
s: "Blue Letter Bible",
|
|
sc: "Reference (religion)",
|
|
t: "blb",
|
|
u: "http://www.blb.org/search/preSearch.cfm?plugin=yes&Criteria={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.bilibili.com",
|
|
r: 27,
|
|
s: "\u54d4\u54e9\u54d4\u54e9\u5f39\u5e55\u7f51",
|
|
sc: "Video",
|
|
t: "blbl",
|
|
u: "http://www.bilibili.com/search?keyword={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "live.blockcypher.com",
|
|
r: 0,
|
|
s: "BlockCypher",
|
|
sc: "Programming",
|
|
t: "blcy",
|
|
u: "https://live.blockcypher.com/btc/address/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "thelawdictionary.org",
|
|
r: 0,
|
|
s: "Blacks Law Dictionary",
|
|
sc: "Law",
|
|
t: "bld",
|
|
u: "http://thelawdictionary.org/search2/?cx=partner-pub-4620319056007131%3A7293005414&cof=FORID%3A11&ie=UTF-8&q={{{s}}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "bleach.wikia.com",
|
|
r: 0,
|
|
s: "Bleach Wiki",
|
|
sc: "General",
|
|
t: "bleach",
|
|
u: "http://bleach.wikia.com/wiki/Special:Search?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "bluetoothle.wiki",
|
|
r: 0,
|
|
s: "Bluetooth LE Wiki",
|
|
sc: "Blogs",
|
|
t: "ble",
|
|
u: "https://bluetoothle.wiki/start?do=search&id=start&q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "bleep.com",
|
|
r: 0,
|
|
s: "Bleep",
|
|
sc: "Music",
|
|
t: "bleep",
|
|
u: "https://bleep.com/search/query?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.bleepingcomputer.com",
|
|
r: 17,
|
|
s: "Bleeping Computer",
|
|
sc: "Learning",
|
|
t: "bleepingpc",
|
|
u: "https://www.bleepingcomputer.com/search/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "docs.blender.org",
|
|
r: 0,
|
|
s: "Blender Current API",
|
|
sc: "Libraries/Frameworks",
|
|
t: "blendapi",
|
|
u: "https://docs.blender.org/api/current/search.html?q={{{s}}}&check_keywords=yes&area=default",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "docs.blender.org",
|
|
r: 0,
|
|
s: "Blender API",
|
|
sc: "Programming",
|
|
t: "blenderapi",
|
|
u: "https://docs.blender.org/api/current/search.html?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "docs.blender.org",
|
|
r: 0,
|
|
s: "Blender Manual",
|
|
sc: "Design",
|
|
t: "blender",
|
|
u: "https://docs.blender.org/manual/en/latest/search.html?q={{{s}}}&check_keywords=yes",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.blenderguru.com",
|
|
r: 0,
|
|
s: "Blender Guru",
|
|
sc: "Images",
|
|
t: "blenderguru",
|
|
u: "http://www.blenderguru.com/?s={{{s}}}&submit.x=0&submit.y=0",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "blendle.nl",
|
|
r: 0,
|
|
s: "Blendle",
|
|
sc: "Aggregators",
|
|
t: "blendle",
|
|
u: "https://blendle.nl/search/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "blender.stackexchange.com",
|
|
r: 0,
|
|
s: " _ Blender Stack Exchange",
|
|
sc: "Academic",
|
|
t: "blex",
|
|
u: "http://blender.stackexchange.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "budgetlightforum.com",
|
|
r: 0,
|
|
s: "BudgetLightForum.com",
|
|
sc: "Blogs",
|
|
t: "blf",
|
|
u: "http://budgetlightforum.com/search?q_as={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.blenderguru.com",
|
|
r: 0,
|
|
s: "Blender Guru",
|
|
sc: "Images",
|
|
t: "blg",
|
|
u: "http://www.blenderguru.com/?s={{{s}}}&submit.x=0&submit.y=0",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.blickamabend.ch",
|
|
r: 0,
|
|
s: "Blick am Abend",
|
|
sc: "Newspaper",
|
|
t: "blickaa",
|
|
u: "http://www.blickamabend.ch/suche/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.blinde-kuh.de",
|
|
r: 0,
|
|
s: "Blindekuh.de",
|
|
sc: "Search",
|
|
t: "blindekuh",
|
|
u: "http://www.blinde-kuh.de/bksearch.cgi?input=bksearchbox+start&query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.booklooker.de",
|
|
r: 0,
|
|
s: "Booklooker",
|
|
sc: "Online",
|
|
t: "blk",
|
|
u: "https://www.booklooker.de/B\u00fccher/Angebote/infotext={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.bloomberg.com",
|
|
r: 0,
|
|
s: "Bloomberg",
|
|
sc: "Business",
|
|
t: "blmb",
|
|
u: "http://www.bloomberg.com/search?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "blogmotion.fr",
|
|
r: 0,
|
|
s: "Blogmotion",
|
|
sc: "Sysadmin",
|
|
t: "blm",
|
|
u: "http://blogmotion.fr/?utm_source=duckduckgo&utm_medium=bang&s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "searcharchives.bl.uk",
|
|
r: 0,
|
|
s: "British Library Explore Archives and Manuscripts",
|
|
sc: "Academic",
|
|
t: "blms",
|
|
u: "http://searcharchives.bl.uk/primo_library/libweb/action/search.do?fn=search&vl(freeText0)={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.blendernation.com",
|
|
r: 0,
|
|
s: "Blender Nation",
|
|
sc: "Design",
|
|
t: "bln",
|
|
u: "https://www.blendernation.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "blockchain.info",
|
|
r: 0,
|
|
s: "blockchain",
|
|
sc: "Search",
|
|
t: "blockchain",
|
|
u: "https://blockchain.info/en/search?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "blockchair.com",
|
|
r: 4,
|
|
s: "Blockchair",
|
|
sc: "Tracking",
|
|
t: "blockchair",
|
|
u: "https://blockchair.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
d: "www.blocket.se",
|
|
r: 11,
|
|
s: "Blocket",
|
|
t: "blocket",
|
|
u: "http://www.blocket.se/hela_sverige?q={{{s}}}&cg=0&w=3&st=s&st=u&st=b&ca=11&l=0&md=th",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "bloganchoi.com",
|
|
r: 0,
|
|
s: "BlogAnChoi",
|
|
sc: "Magazine",
|
|
t: "bloganchoi",
|
|
u: "http://bloganchoi.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "duckduckgo.com",
|
|
r: 0,
|
|
s: "DuckDuckGo blog",
|
|
sc: "Blogs",
|
|
t: "blog",
|
|
u: "https://duckduckgo.com/?q={{{s}}}+site%3Aduck.co%2Fblog",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "",
|
|
r: 0,
|
|
s: "Blogspot",
|
|
sc: "Search (DDG)",
|
|
t: "blogspot",
|
|
u: "/?q={{{s}}}+site:blogspot.com",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "blogs.splunk.com",
|
|
r: 0,
|
|
s: "blogs.splunk.com",
|
|
sc: "Companies",
|
|
t: "blogs.splunk",
|
|
u: "http://blogs.splunk.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "blogtalkradio.com",
|
|
r: 0,
|
|
s: "BlogTalkRadio",
|
|
sc: "Audio",
|
|
t: "blogtalkradio",
|
|
u: "http://blogtalkradio.com/search/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.blogudir.com",
|
|
r: 0,
|
|
s: "Blogudir",
|
|
sc: "Blogs",
|
|
t: "blogudir",
|
|
u: "https://www.blogudir.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "bloodcat.com",
|
|
r: 0,
|
|
s: "Bloodcat Beatmap Mirror",
|
|
sc: "Games (specific)",
|
|
t: "bloodcat",
|
|
u: "https://bloodcat.com/osu/?q={{{s}}}&c=b&s=&m=&g=&l=",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.bloomberg.com",
|
|
r: 19,
|
|
s: "Bloomberg",
|
|
sc: "Business",
|
|
t: "bloom",
|
|
u: "https://www.bloomberg.com/search?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "bloons.wikia.com",
|
|
r: 10,
|
|
s: "Bloons Wiki",
|
|
sc: "Games (specific)",
|
|
t: "bloonswiki",
|
|
u: "http://bloons.wikia.com/search?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "explore.bl.uk",
|
|
r: 6,
|
|
s: "The British Library Catalogue",
|
|
sc: "Academic",
|
|
t: "bl",
|
|
u: "http://explore.bl.uk/primo_library/libweb/action/search.do?fn=search&vl(freeText0)={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "blueapron.com",
|
|
r: 0,
|
|
s: "Blue Apron",
|
|
sc: "Online (marketplace)",
|
|
t: "blueapron",
|
|
u: "http://blueapron.com/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.bluehive.com",
|
|
r: 0,
|
|
s: "BlueHive",
|
|
sc: "Tools",
|
|
t: "bluehive",
|
|
u: "https://www.bluehive.com/providers/search/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.blueletterbible.org",
|
|
r: 0,
|
|
s: "Blue Letter Bible",
|
|
sc: "Reference (religion)",
|
|
t: "blueletterbible",
|
|
u: "http://www.blueletterbible.org/search/search.cfm?Criteria={{{s}}}&t=KJV#s=s_primary_0_1",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "cse.google.com",
|
|
r: 0,
|
|
s: "Bluelight",
|
|
sc: "Health",
|
|
t: "bluelight",
|
|
u: "http://cse.google.com/cse?cx=009513296995230692334:6ksgwcos37i&q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "rsw.me.uk",
|
|
r: 0,
|
|
s: "Blueline",
|
|
sc: "Topical",
|
|
t: "blueline",
|
|
u: "https://rsw.me.uk/blueline/methods/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "explore.bl.uk",
|
|
r: 0,
|
|
s: "The British Library Catalogue",
|
|
sc: "Academic",
|
|
t: "bluk",
|
|
u: "http://explore.bl.uk/primo_library/libweb/action/search.do?fn=search&vl(freeText0)={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.blu-ray.com",
|
|
r: 70,
|
|
s: "Blu-ray.com",
|
|
sc: "Movies",
|
|
t: "bluray",
|
|
u: "http://www.blu-ray.com/search/?quicksearch=1&quicksearch_country=all&quicksearch_keyword={{{s}}}§ion=bluraymovies",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.blox.pl",
|
|
r: 0,
|
|
s: "Blox.pl",
|
|
sc: "Search (non-US)",
|
|
t: "blx",
|
|
u: "http://www.blox.pl/html?page=blogPublicSearch&container_search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.bing.com",
|
|
r: 21,
|
|
s: "Bing Maps",
|
|
sc: "Search",
|
|
t: "bmaps",
|
|
u: "https://www.bing.com/maps/?q={{{s}}}&obox=1",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.bing.com",
|
|
r: 157,
|
|
s: "bing maps",
|
|
sc: "Maps",
|
|
t: "bm",
|
|
u: "https://www.bing.com/maps/?q={{{s}}}&obox=1",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.brickmerge.de",
|
|
r: 0,
|
|
s: "BrickMerge",
|
|
sc: "Online (deals)",
|
|
t: "bmde",
|
|
u: "https://www.brickmerge.de/?find={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "bestpractice.bmj.com",
|
|
r: 0,
|
|
s: "BMJ Best Practice",
|
|
sc: "Health",
|
|
t: "bmjbp",
|
|
u: "https://bestpractice.bmj.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.bmj.com",
|
|
r: 0,
|
|
s: "The BMJ",
|
|
sc: "Academic",
|
|
t: "bmj",
|
|
u: "https://www.bmj.com/search/advanced/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "blendermarket.com",
|
|
r: 0,
|
|
s: "blendermarket.com",
|
|
sc: "Tools",
|
|
t: "bmk",
|
|
u: "https://blendermarket.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "bugzilla.mozilla.org",
|
|
r: 0,
|
|
s: "Mozilla Bugzilla",
|
|
sc: "Programming",
|
|
t: "bmo",
|
|
u: "https://bugzilla.mozilla.org/buglist.cgi?quicksearch={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.bmonotes.com",
|
|
r: 0,
|
|
s: "BMO Structured Notes",
|
|
sc: "Reference",
|
|
t: "bmonotes",
|
|
u: "https://www.bmonotes.com/Search/GeneralSearch?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.bing.com",
|
|
r: 0,
|
|
s: "Bing",
|
|
sc: "Search",
|
|
t: "bmonth",
|
|
u: 'https://www.bing.com/search?q={{{s}}}&filters=ex1%3a""ez3""',
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "bookmyparts.com",
|
|
r: 0,
|
|
s: "https://bookmyparts.com",
|
|
sc: "Online (marketplace)",
|
|
t: "bmp",
|
|
u: "https://bookmyparts.com/?s={{{s}}}&post_type=product",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "bluemoonrising.com",
|
|
r: 0,
|
|
s: "Blue Moon Rising",
|
|
sc: "Misc",
|
|
t: "bmr",
|
|
u: "http://bluemoonrising.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "in.bookmyshow.com",
|
|
r: 7,
|
|
s: "BookMY Show",
|
|
sc: "Misc",
|
|
t: "bms",
|
|
u: "http://in.bookmyshow.com/search/results/?_s=0.2&search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.getbmwparts.com",
|
|
r: 0,
|
|
s: "BMW Parts",
|
|
sc: "Search",
|
|
t: "bmwparts",
|
|
u: "https://www.getbmwparts.com/search?search_str={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.bna.com.ar",
|
|
r: 0,
|
|
s: "Banco de la Naci\u00f3n Argentina",
|
|
sc: "Social (intl)",
|
|
t: "bna",
|
|
u: "http://www.bna.com.ar/Buscador?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.barnesandnoble.com",
|
|
r: 0,
|
|
s: "barnes and noble ",
|
|
sc: "Online",
|
|
t: "b&n",
|
|
u: "http://www.barnesandnoble.com/s/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.barnesandnoble.com",
|
|
r: 64,
|
|
s: "Barnes and Noble",
|
|
sc: "Online",
|
|
t: "bn",
|
|
u: "http://www.barnesandnoble.com/s/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.bing.com",
|
|
r: 0,
|
|
s: "Bing Narrow by Region",
|
|
sc: "Search",
|
|
t: "bnbr",
|
|
u: "http://www.bing.com/search?q={{{s}}}&rf=1&qpvt={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "bandcamp.com",
|
|
r: 148,
|
|
s: "Bandcamp",
|
|
sc: "Music",
|
|
t: "bndc",
|
|
u: "https://bandcamp.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.bing.com",
|
|
r: 0,
|
|
s: "Bing News",
|
|
sc: "Search",
|
|
t: "bnews",
|
|
u: "https://www.bing.com/news/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "catalogue.bnf.fr",
|
|
r: 0,
|
|
s: "Catalogue BNF",
|
|
sc: "Reference",
|
|
t: "bnf",
|
|
u: "http://catalogue.bnf.fr/rechercher.do?motRecherche={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "bokunoheroacademia.wikia.com",
|
|
r: 4,
|
|
s: "Boku no Hero Academia Wiki",
|
|
sc: "Comics",
|
|
t: "bnha",
|
|
u: "http://bokunoheroacademia.wikia.com/wiki/Special:Search?go&query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.baileynurseries.com",
|
|
r: 0,
|
|
s: "Bailey Nurseries",
|
|
sc: "Images",
|
|
t: "bnil",
|
|
u: "http://www.baileynurseries.com/imagelibrary/gallery/search/?name={{{s}}}&brand=All&plant_type=All&height_lo=&height=f&spread_lo=&spread=f&exposure=All&zone=All&foliage=&dosearch=Do+Search",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.bing.com",
|
|
r: 0,
|
|
s: "Bing Netherlands",
|
|
sc: "Search",
|
|
t: "bnl",
|
|
u: "https://www.bing.com/search?q={{{s}}}&cc=nl",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.bnrmetal.com",
|
|
r: 3,
|
|
s: "BNR Metal Pages",
|
|
sc: "Reference (fun)",
|
|
t: "bnr",
|
|
u: "http://www.bnrmetal.com/v5/search/search/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "bokunoshumi.wordpress.com",
|
|
r: 0,
|
|
s: "http://bokunoshumi.wordpress.com",
|
|
sc: "Blogs",
|
|
t: "bns",
|
|
u: "https://bokunoshumi.wordpress.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "boardgamegeek.com",
|
|
r: 5,
|
|
s: "Boardgamegeek",
|
|
sc: "Games (offline)",
|
|
t: "boardgame",
|
|
u: "http://boardgamegeek.com/geeksearch.php?action=search&objecttype=boardgame&q={{{s}}}&B1=Go",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "boardgamegeek.com",
|
|
r: 0,
|
|
s: "BoardGameGeek",
|
|
sc: "Games (offline)",
|
|
t: "boardgamegeek",
|
|
u: "http://boardgamegeek.com/geeksearch.php?action=search&objecttype=boardgame&q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.boardgameprices.com",
|
|
r: 0,
|
|
s: "BoardGamePrices",
|
|
sc: "Games (general)",
|
|
t: "boardgameprices",
|
|
u: "http://www.boardgameprices.com/compare-prices-for?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "dillonboardman.wordpress.com",
|
|
r: 0,
|
|
s: "Boardman Perspective",
|
|
sc: "Blogs",
|
|
t: "boardman",
|
|
u: "http://dillonboardman.wordpress.com/?s={{{s}}}&submit=Search",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.boards.ie",
|
|
r: 0,
|
|
s: "Boards.ie",
|
|
sc: "Forum",
|
|
t: "boards",
|
|
u: "http://www.boards.ie/search/submit/?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.bobdylan.com",
|
|
r: 0,
|
|
s: "Bob Dylan",
|
|
sc: "Music (Lyrics)",
|
|
t: "bobdylan",
|
|
u: "https://www.bobdylan.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.boerse-online.de",
|
|
r: 14,
|
|
s: "Boerse Online",
|
|
sc: "Business",
|
|
t: "bo",
|
|
u: "http://www.boerse-online.de/suchergebnisse?_search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "bestonlinecasinoca.com",
|
|
r: 0,
|
|
s: "BestOnlineCasinoCA",
|
|
sc: "Games (specific)",
|
|
t: "bocca",
|
|
u: "https://bestonlinecasinoca.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "bocpages.org",
|
|
r: 0,
|
|
s: "bocpages",
|
|
sc: "Music",
|
|
t: "bocpages",
|
|
u: "http://bocpages.org/w/index.php?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "bodeka.org",
|
|
r: 0,
|
|
s: "bodeka.org",
|
|
sc: "Sports",
|
|
t: "bodeka",
|
|
u: "http://bodeka.org/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.bodo.de",
|
|
r: 0,
|
|
s: "bodo Verkehrsverbund",
|
|
sc: "Search",
|
|
t: "bodo",
|
|
u: "https://www.bodo.de/suche.html?tx_kesearch_pi1[sword]={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.bodycarereviews.com",
|
|
r: 0,
|
|
s: "Body Care Reviews",
|
|
sc: "Online",
|
|
t: "bodycare",
|
|
u: "https://www.bodycarereviews.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.bodyenfitshop.nl",
|
|
r: 0,
|
|
s: "Body & Fit",
|
|
sc: "Online (deals)",
|
|
t: "bodyfit",
|
|
u: "http://www.bodyenfitshop.nl/#twn|?tn_q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.bogleheads.org",
|
|
r: 0,
|
|
s: "Bogleheads Wiki",
|
|
sc: "Topical",
|
|
t: "bogle",
|
|
u: "http://www.bogleheads.org/w/index.php?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "bindingofisaacrebirth.gamepedia.com",
|
|
r: 18,
|
|
s: "Binding of Isaac: Rebirth Wiki",
|
|
sc: "Games (general)",
|
|
t: "boi",
|
|
u: "http://bindingofisaacrebirth.gamepedia.com/index.php?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.google.com",
|
|
r: 0,
|
|
s: "boingboing",
|
|
sc: "Google",
|
|
t: "boingboing",
|
|
u: "http://www.google.com/cse?cx=partner-pub-2170174688585464:d58nno-rqp8&ie=ISO-8859-1&q={{{s}}}&sa=GO&siteurl=www.boingboing.net/",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "ordbok.uib.no",
|
|
r: 0,
|
|
s: "http://ordbok.uib.no/",
|
|
sc: "Reference (words)",
|
|
t: "bokm\u00e5lsordboka",
|
|
u: "http://ordbok.uib.no/perl/ordbok.cgi?OPP=+{{{s}}}&ant_bokmaal=5&ant_nynorsk=5&bokmaal=+&ordbok=bokmaal",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.bokus.com",
|
|
r: 3,
|
|
s: "Bokus",
|
|
sc: "Online",
|
|
t: "bokus",
|
|
u: "http://www.bokus.com/cgi-bin/product_search.cgi?ac_used=no&search_word={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "wiki.parabola.nu",
|
|
r: 0,
|
|
s: "Parabola GNU/Linux Wiki",
|
|
sc: "Sysadmin (Arch)",
|
|
t: "bola",
|
|
u: "https://wiki.parabola.nu/index.php?title=Special%3ASearch&search={{{s}}}&go=Go",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.parabola.nu",
|
|
r: 0,
|
|
s: "Parabola GNU/Linux Packages",
|
|
sc: "Sysadmin (Arch)",
|
|
t: "bolapkg",
|
|
u: "https://www.parabola.nu/packages/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.bol.com",
|
|
r: 159,
|
|
s: "bol.com",
|
|
sc: "Online",
|
|
t: "bol",
|
|
u: "https://www.bol.com/nl/s/?searchtext={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.bolha.com",
|
|
r: 0,
|
|
s: "Bolha",
|
|
sc: "Online (marketplace)",
|
|
t: "bolha",
|
|
u: "http://www.bolha.com/iskanje?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Translation",
|
|
d: "www.bolor-toli.com",
|
|
r: 0,
|
|
s: "bolor-toli",
|
|
sc: "General",
|
|
t: "bolor",
|
|
u: "http://www.bolor-toli.com/dictionary/word?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.boxofficemojo.com",
|
|
r: 17,
|
|
s: "Box Office Mojo",
|
|
sc: "Movies",
|
|
t: "bom",
|
|
u: "http://www.boxofficemojo.com/search/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.bomnegocio.com",
|
|
r: 0,
|
|
s: "Bom Neg\u00f3cio",
|
|
sc: "Online (intl)",
|
|
t: "bomnegocio",
|
|
u: "http://www.bomnegocio.com/brasil?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.bona.co.za",
|
|
r: 0,
|
|
s: "Bona",
|
|
sc: "Magazine",
|
|
t: "bona",
|
|
u: "https://www.bona.co.za/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.bondfaro.com.br",
|
|
r: 0,
|
|
s: "Bondfaro",
|
|
sc: "Services",
|
|
t: "bondfaro",
|
|
u: "http://www.bondfaro.com.br/cprocura?produto={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.bonfire.com",
|
|
r: 0,
|
|
s: "Bonfire",
|
|
sc: "Online (marketplace)",
|
|
t: "bonfire",
|
|
u: "https://www.bonfire.com/results/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "bonnus.ulb.uni-bonn.de",
|
|
r: 0,
|
|
s: "Bonnus",
|
|
sc: "Academic",
|
|
t: "bonnus",
|
|
u: "https://bonnus.ulb.uni-bonn.de/Summon/Search?lookfor={{{s}}}&type=AllFields&submit=Suchen",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "bookbaz.ir",
|
|
r: 0,
|
|
s: "BookBaz",
|
|
sc: "Online",
|
|
t: "bookbaz",
|
|
u: "http://bookbaz.ir/?s={{{s}}} ",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.booking.com",
|
|
r: 54,
|
|
s: "booking.com",
|
|
sc: "Services",
|
|
t: "book",
|
|
u: "http://www.booking.com/searchresults.html?ss={{{s}}}&si=ai",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "bookbrainz.org",
|
|
r: 0,
|
|
s: "BookBrainz",
|
|
sc: "Reference (words)",
|
|
t: "bookbrainz",
|
|
u: "https://bookbrainz.org/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "bookcrossing.by",
|
|
r: 0,
|
|
s: "BookCrossing",
|
|
sc: "Books",
|
|
t: "bookcrossing",
|
|
u: "http://bookcrossing.by/books?find={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "bookdepository.com",
|
|
r: 0,
|
|
s: "bookdepository",
|
|
sc: "Online",
|
|
t: "bookdep",
|
|
u: "http://bookdepository.com/search?searchTerm={{{s}}}&search=Find+book",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.bookdepository.com",
|
|
r: 0,
|
|
s: "BookDepository",
|
|
sc: "Online (intl)",
|
|
t: "bookdepository",
|
|
u: "https://www.bookdepository.com/search?searchTerm={{{s}}}&search=Find+book",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.bookeenstore.com",
|
|
r: 0,
|
|
s: "Bookeen Store",
|
|
sc: "Books",
|
|
t: "bookeen",
|
|
u: "https://www.bookeenstore.com/search?words={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.bookfinder.com",
|
|
r: 36,
|
|
s: "Book Finder",
|
|
sc: "Books",
|
|
t: "bookfinder",
|
|
u: "http://www.bookfinder.com/search/?author=&title={{{s}}}&lang=en&submit=Begin+search&new_used=*&destination=us¤cy=USD&mode=basic&st=sr&ac=qr",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "bookflavor.com",
|
|
r: 0,
|
|
s: "Bookflavor",
|
|
sc: "Books",
|
|
t: "bookflavor",
|
|
u: "http://bookflavor.com/#!{{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.booking.com",
|
|
r: 16,
|
|
s: "Booking",
|
|
sc: "Online",
|
|
t: "booking",
|
|
u: "http://www.booking.com/searchresults.html?ss={{{s}}}&si=ai",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.booking.com",
|
|
r: 0,
|
|
s: "Booking Espa\u00f1a",
|
|
sc: "Travel",
|
|
t: "bookinges",
|
|
u: "https://www.booking.com/search.es.html?ss={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "booklive.jp",
|
|
r: 6,
|
|
s: "BookLive!",
|
|
sc: "Online",
|
|
t: "booklive",
|
|
u: "http://booklive.jp/search/keyword?keyword={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.booklooker.de",
|
|
r: 7,
|
|
s: "Booklooker",
|
|
sc: "Online (marketplace)",
|
|
t: "booklooker",
|
|
u: "http://www.booklooker.de/B%C3%BCcher/Angebote/infotext={{{s}}}?lid=1",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "in.bookmyshow.com",
|
|
r: 0,
|
|
s: "BookMY Show",
|
|
sc: "Movies",
|
|
t: "bookmyshow",
|
|
u: "http://in.bookmyshow.com/search/results/?_s=0.2&search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.booknet.co.il",
|
|
r: 0,
|
|
s: "Booknet",
|
|
sc: "Online",
|
|
t: "booknet",
|
|
u: "http://www.booknet.co.il/subc.asp?serin=3&c=3947&ser={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "booko.com.au",
|
|
r: 17,
|
|
s: "Booko",
|
|
sc: "Books",
|
|
t: "booko",
|
|
u: "http://booko.com.au/books/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.amazon.com",
|
|
r: 17,
|
|
s: "Amazon.com",
|
|
sc: "Books",
|
|
t: "books",
|
|
u: "https://www.amazon.com/s?k={{{s}}}&i=stripbooks",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.booksetc.co.uk",
|
|
r: 0,
|
|
s: "Books etc UK",
|
|
sc: "Online",
|
|
t: "booksetc",
|
|
u: "http://www.booksetc.co.uk/books/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "boomkat.com",
|
|
r: 0,
|
|
s: "boomkat",
|
|
sc: "Music",
|
|
t: "boomkat",
|
|
u: "http://boomkat.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.websmartboomer.com",
|
|
r: 0,
|
|
s: "Websmartboomer",
|
|
sc: "Blogs",
|
|
t: "boom",
|
|
u: "http://www.websmartboomer.com/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "bugzilla.opensuse.org",
|
|
r: 54,
|
|
s: "openSUSE Bugzilla",
|
|
sc: "Sysadmin",
|
|
t: "boo",
|
|
u: "https://bugzilla.opensuse.org/buglist.cgi?quicksearch={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "",
|
|
r: 8,
|
|
s: "Boost.org",
|
|
sc: "Languages (c++)",
|
|
t: "boost",
|
|
u: "/?q={{{s}}}+site:boost.org",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "getbootstrap.com",
|
|
r: 5,
|
|
s: "Boostrap",
|
|
sc: "Libraries/Frameworks",
|
|
t: "boot",
|
|
u: "https://getbootstrap.com/docs/4.0/components/{{{s}}}/",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "bootleggames.wikia.com",
|
|
r: 0,
|
|
s: "Bootleg Games Wiki",
|
|
sc: "Games (general)",
|
|
t: "bootleg",
|
|
u: "http://bootleggames.wikia.com/wiki/Special:Search?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "borderlands.wikia.com",
|
|
r: 0,
|
|
s: "Borderlands Wiki",
|
|
sc: "Games (specific)",
|
|
t: "borderlands",
|
|
u: "http://borderlands.wikia.com/wiki/Special:Search?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.bostonglobe.com",
|
|
r: 3,
|
|
s: "Boston Globe",
|
|
sc: "Newspaper",
|
|
t: "bostonglobe",
|
|
u: "http://www.bostonglobe.com/queryResult/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "bpl.bibliocommons.com",
|
|
r: 0,
|
|
s: "Boston Public Library",
|
|
sc: "General",
|
|
t: "bostonpubliclibrary",
|
|
u: "https://bpl.bibliocommons.com/search?q={{{s}}}&t=smart&search_category=keyword&commit=Search&submitsearch=go&se=catalog",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "duckduckgo.com",
|
|
r: 0,
|
|
s: "Battle of the Bits",
|
|
sc: "Music",
|
|
t: "botb",
|
|
u: "https://duckduckgo.com/?q=site%3Abattleofthebits.org+{{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "botlist.co",
|
|
r: 0,
|
|
s: "Botlist",
|
|
sc: "Downloads (add-ons)",
|
|
t: "botlist",
|
|
u: "https://botlist.co/search?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "boto3.readthedocs.io",
|
|
r: 7,
|
|
s: "Boto 3 Docs",
|
|
sc: "Programming",
|
|
t: "boto3",
|
|
u: "https://boto3.readthedocs.io/en/latest/search.html?q={{{s}}}&check_keywords=yes&area=default",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.boulanger.com",
|
|
r: 4,
|
|
s: "Boulanger",
|
|
sc: "Tech",
|
|
t: "boulanger",
|
|
u: "http://www.boulanger.com/resultats?tr={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.bouletcorp.com",
|
|
r: 0,
|
|
s: "bouletcorp",
|
|
sc: "Comics",
|
|
t: "boulet",
|
|
u: "http://www.bouletcorp.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.bountysource.com",
|
|
r: 0,
|
|
s: "Bountysource",
|
|
sc: "Programming",
|
|
t: "bountysource",
|
|
u: "https://www.bountysource.com/search?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "bourbon.io",
|
|
r: 0,
|
|
s: "Bourbon",
|
|
sc: "Libraries/Frameworks",
|
|
t: "bourbon",
|
|
u: "http://bourbon.io/docs/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "libraries.io",
|
|
r: 0,
|
|
s: "bower",
|
|
sc: "Languages (javascript)",
|
|
t: "bower",
|
|
u: "https://libraries.io/search?q={{{s}}}&platforms=Bower&sort=rank&sort=rank",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "boxoh.com",
|
|
r: 6,
|
|
s: "Boxoh",
|
|
sc: "Tracking",
|
|
t: "boxoh",
|
|
u: "http://boxoh.com/?t={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "boyslife.org",
|
|
r: 0,
|
|
s: "Boys' Life magazine",
|
|
sc: "Misc",
|
|
t: "boyslife",
|
|
u: "http://boyslife.org/search/?q={{{s}}} ",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "bulbapedia.bulbagarden.net",
|
|
r: 53,
|
|
s: "Bulbapedia",
|
|
sc: "Games (Pokemon)",
|
|
t: "bpa",
|
|
u: "http://bulbapedia.bulbagarden.net/wiki/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.boredpanda.com",
|
|
r: 0,
|
|
s: "Bored Panda",
|
|
sc: "Blogs",
|
|
t: "bpanda",
|
|
u: "https://www.boredpanda.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.bpb.de",
|
|
r: 4,
|
|
s: "Bundeszentrale f\u00fcr politische Bildung",
|
|
sc: "Government",
|
|
t: "bpb",
|
|
u: "http://www.bpb.de/suche/?suchwort={{{s}}}&suchen=Suchen",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "beautifulpixels.com",
|
|
r: 4,
|
|
s: "Beautiful Pixels",
|
|
sc: "Blogs",
|
|
t: "bp",
|
|
u: "http://beautifulpixels.com/?s={{{s}}} ",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "bulbapedia.bulbagarden.net",
|
|
r: 34,
|
|
s: "Bulbapedia",
|
|
sc: "Games (Pokemon)",
|
|
t: "bpedia",
|
|
u: "http://bulbapedia.bulbagarden.net/w/index.php?title=Special:Search&search={{{s}}}&go=Go",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "products.bpiworld.org",
|
|
r: 0,
|
|
s: "Biodegradable Products Institute",
|
|
sc: "Tools",
|
|
t: "bpi",
|
|
u: "http://products.bpiworld.org/companies?title=&field_industry_category_tid=&field_member_id_value={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.backpackinglight.com",
|
|
r: 0,
|
|
s: "Backpacking Light",
|
|
sc: "Forum",
|
|
t: "bpl",
|
|
u: "http://www.backpackinglight.com/cgi-bin/backpackinglight/search.html?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "songbpm.com",
|
|
r: 0,
|
|
s: "Song Bpm",
|
|
sc: "Music",
|
|
t: "bpm",
|
|
u: "https://songbpm.com/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "bugs.python.org",
|
|
r: 0,
|
|
s: "Python Bug Tracker",
|
|
sc: "Languages (python)",
|
|
t: "bpoi",
|
|
u: "https://bugs.python.org/issue{{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.brainpop.com",
|
|
r: 0,
|
|
s: "BrainPOP",
|
|
sc: "Design",
|
|
t: "bpop",
|
|
u: "https://www.brainpop.com/search/?keyword={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "bugs.python.org",
|
|
r: 0,
|
|
s: "Python Bug Tracker",
|
|
sc: "Languages (python)",
|
|
t: "bpo",
|
|
u: "https://bugs.python.org/issue?%40columns=id%2Cactivity%2Ctitle%2Ccreator%2Cassignee%2Cstatus%2Ctype&%40sort=-activity&%40filter=status&%40action=searchid&ignore=file%3Acontent&%40search_text={{{s}}}&submit=search&status=-1%2C1%2C2%2C3",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "track.bpost.be",
|
|
r: 0,
|
|
s: "BPost",
|
|
sc: "Tracking",
|
|
t: "bpost",
|
|
u: "http://track.bpost.be/btr/web/#/search?itemCode={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "bibliotheques.paris.fr",
|
|
r: 0,
|
|
s: "Biblioth\u00e8ques de pr\u00eat de la Ville de Paris",
|
|
sc: "Local",
|
|
t: "bpp",
|
|
u: "https://bibliotheques.paris.fr/Default/search.aspx?SC=CATALOGUE&QUERY={{{s}}}&QUERY_LABEL=",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "katalog.bppn.waw.pl",
|
|
r: 0,
|
|
s: "Bppn",
|
|
sc: "Books",
|
|
t: "bppn",
|
|
u: "http://katalog.bppn.waw.pl/F?func=find-b&request={{{s}}}&find_code=WRD&adjacent=N&local_base=PRA01&x=0&y=0&filter_code_1=WLN&filter_request_1=&filter_code_2=WYR&filter_request_2=&filter_code_3=WYR&filter_request_3=&filter_code_4=WFM&filter_request_4=&filter_code_5=WSL&filter_request_5=",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "pro.beatport.com",
|
|
r: 0,
|
|
s: "Beatport Pro",
|
|
sc: "Music",
|
|
t: "bppro",
|
|
u: "https://pro.beatport.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "legacy.baseballprospectus.com",
|
|
r: 0,
|
|
s: "Baseball Prospectus",
|
|
sc: "Sports",
|
|
t: "bpro",
|
|
u: "https://legacy.baseballprospectus.com/player_search.php?search_name={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.brownpapertickets.com",
|
|
r: 0,
|
|
s: "Brown Paper Tickets",
|
|
sc: "Online",
|
|
t: "bpt",
|
|
u: "https://www.brownpapertickets.com/browse.html?keywords={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.bloombergquint.com",
|
|
r: 0,
|
|
s: "BloombergQuint",
|
|
sc: "Business",
|
|
t: "bq",
|
|
u: "https://www.bloombergquint.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.brack.ch",
|
|
r: 3,
|
|
s: "Brack",
|
|
sc: "Online",
|
|
t: "brack",
|
|
u: "https://www.brack.ch/search?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.brainpop.com",
|
|
r: 0,
|
|
s: "BrainPOP",
|
|
sc: "Learning",
|
|
t: "brainpop",
|
|
u: "https://www.brainpop.com/search/search.weml?keyword={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "educators.brainpop.com",
|
|
r: 0,
|
|
s: "BrainPOP Educators",
|
|
sc: "Academic",
|
|
t: "brainpopeducators",
|
|
u: "http://educators.brainpop.com/search/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.brainyquote.com",
|
|
r: 0,
|
|
s: "BrainyQuote",
|
|
sc: "Reference",
|
|
t: "brainyquote",
|
|
u: "https://www.brainyquote.com/search_results.html?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "brakdag.nl",
|
|
r: 0,
|
|
s: "Brakdag",
|
|
sc: "Newspaper",
|
|
t: "brakdag",
|
|
u: "https://brakdag.nl/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.brandsoftheworld.com",
|
|
r: 0,
|
|
s: "Brands of the world",
|
|
sc: "Images",
|
|
t: "brands",
|
|
u: "http://www.brandsoftheworld.com/search/logo?search_api_views_fulltext={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.bratabase.com",
|
|
r: 0,
|
|
s: "Bratabase",
|
|
sc: "Reference",
|
|
t: "bratabase",
|
|
u: "http://www.bratabase.com/search/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "search.brave.com",
|
|
r: 2971,
|
|
s: "Brave Search",
|
|
sc: "Google",
|
|
t: "brave",
|
|
u: "https://search.brave.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.baseball-reference.com",
|
|
r: 95,
|
|
s: "Baseball-Reference",
|
|
sc: "Reference",
|
|
t: "br",
|
|
u: "http://www.baseball-reference.com/pl/player_search.cgi?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "boardreader.com",
|
|
r: 0,
|
|
s: "Boardreader",
|
|
sc: "Search",
|
|
t: "brd",
|
|
u: "https://boardreader.com/s/{{{s}}}.html",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.breitbart.com",
|
|
r: 10,
|
|
s: "Breitbart News",
|
|
sc: "International",
|
|
t: "breitbart",
|
|
u: "http://www.breitbart.com/search/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.brettspiel-angebote.de",
|
|
r: 0,
|
|
s: "Brettspiel Angebote",
|
|
sc: "Online (deals)",
|
|
t: "brettspiele",
|
|
u: "http://www.brettspiel-angebote.de/spiele/?s={{{s}}}&t=",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "formulae.brew.sh",
|
|
r: 15,
|
|
s: "Homebrew",
|
|
sc: "Downloads (software)",
|
|
t: "brewf",
|
|
u: "https://formulae.brew.sh/formula/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "duckduckgo.com",
|
|
r: 142,
|
|
s: "Homebrew",
|
|
sc: "Downloads (software)",
|
|
t: "brew",
|
|
u: "https://duckduckgo.com/?q={{{s}}}+site%3Aformulae.brew.sh",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.b-rhymes.com",
|
|
r: 0,
|
|
s: "B-Rhymes",
|
|
sc: "Reference (words)",
|
|
t: "b-rhymes",
|
|
u: "http://www.b-rhymes.com/rhyme/word/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.bing.com",
|
|
r: 22,
|
|
s: "Bing Reverse Image Search",
|
|
sc: "Search",
|
|
t: "bri",
|
|
u: "https://www.bing.com/images/search?q=imgurl:{{{s}}}&view=detailv2&iss=sbi&FORM=IRSBIQ#enterInsights",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.bricklink.com",
|
|
r: 5,
|
|
s: "Bricklink",
|
|
sc: "Online",
|
|
t: "bricklink",
|
|
u: "http://www.bricklink.com/search.asp?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.bricklink.com",
|
|
r: 11,
|
|
s: "Bricklink",
|
|
sc: "Reference (fun)",
|
|
t: "bricklinkcat",
|
|
u: "http://www.bricklink.com/catalogList.asp?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "brickset.com",
|
|
r: 0,
|
|
s: "Brickset",
|
|
sc: "Misc",
|
|
t: "brickpart",
|
|
u: "http://brickset.com/parts?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "brickset.com",
|
|
r: 18,
|
|
s: "Brickset",
|
|
sc: "Misc",
|
|
t: "brickset",
|
|
u: "http://brickset.com/sets?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.bricoman.it",
|
|
r: 0,
|
|
s: "Bricoman",
|
|
sc: "Online",
|
|
t: "bricoman",
|
|
u: "https://www.bricoman.it/search/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.brightstorm.com",
|
|
r: 0,
|
|
s: "Brightstorm",
|
|
sc: "Academic (math/cs)",
|
|
t: "brightstorm",
|
|
u: "http://www.brightstorm.com/search/?k={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.bricksinmotion.com",
|
|
r: 0,
|
|
s: "Bricks in Motion",
|
|
sc: "Social (intl)",
|
|
t: "brim",
|
|
u: "http://www.bricksinmotion.com/forums/search/?action=search&keywords={{{s}}}&search=Submit+search&show_as=topics",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.britannica.com",
|
|
r: 11,
|
|
s: "Britannica.com",
|
|
sc: "Reference",
|
|
t: "britannica",
|
|
u: "http://www.britannica.com/search?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "school.eb.com",
|
|
r: 0,
|
|
s: "Britannica School (Elementary)",
|
|
sc: "Reference",
|
|
t: "britannicaschoole",
|
|
u: "http://school.eb.com/levels/elementary/search/articles?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "school.eb.com",
|
|
r: 0,
|
|
s: "Britannica School (High)",
|
|
sc: "Reference",
|
|
t: "britannicaschoolh",
|
|
u: "http://school.eb.com/levels/high/search/articles?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "school.eb.com",
|
|
r: 0,
|
|
s: "Britannica School (Middle)",
|
|
sc: "Reference",
|
|
t: "britannicaschoolm",
|
|
u: "http://school.eb.com/levels/middle/search/articles?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.britannica.com",
|
|
r: 9,
|
|
s: "Encyclopaedia Brittanica",
|
|
sc: "Academic",
|
|
t: "brit",
|
|
u: "https://www.britannica.com/search?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "quest.eb.com",
|
|
r: 0,
|
|
s: "Britannica ImageQuest",
|
|
sc: "Images",
|
|
t: "britimgq",
|
|
u: "http://quest.eb.com/search/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.britishslang.co.uk",
|
|
r: 0,
|
|
s: "British Slang",
|
|
sc: "Reference (words)",
|
|
t: "british",
|
|
u: "http://www.britishslang.co.uk/search/default.aspx?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "school.eb.com",
|
|
r: 0,
|
|
s: "Britannica School (Elementary)",
|
|
sc: "Reference",
|
|
t: "britsche",
|
|
u: "http://school.eb.com/levels/elementary/search/articles?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "school.eb.com",
|
|
r: 0,
|
|
s: "Britannica School (High)",
|
|
sc: "Reference",
|
|
t: "britschh",
|
|
u: "http://school.eb.com/levels/high/search/articles?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "school.eb.com",
|
|
r: 0,
|
|
s: "Britannica School (Middle)",
|
|
sc: "Reference",
|
|
t: "britschm",
|
|
u: "http://school.eb.com/levels/middle/search/articles?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.bruun-rasmussen.dk",
|
|
r: 0,
|
|
s: "Bruun Rasmussen Auctioneers",
|
|
sc: "Online (intl)",
|
|
t: "brk",
|
|
u: "http://www.bruun-rasmussen.dk/search.do?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.xe.com",
|
|
r: 0,
|
|
s: "XE",
|
|
sc: "Tools (URLs)",
|
|
t: "brl2eur",
|
|
u: "https://www.xe.com/currencyconverter/convert/?Amount={{{s}}}&From=BRL&To=EUR",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.xe.com",
|
|
r: 0,
|
|
s: "XE",
|
|
sc: "Tools (URLs)",
|
|
t: "brl2gbp",
|
|
u: "https://www.xe.com/currencyconverter/convert/?Amount={{{s}}}&From=BRL&To=GBP",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.xe.com",
|
|
r: 0,
|
|
s: "XE",
|
|
sc: "Tools (URLs)",
|
|
t: "brl2usd",
|
|
u: "https://www.xe.com/currencyconverter/convert/?Amount={{{s}}}&From=BRL&To=USD",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "brainly.com",
|
|
r: 0,
|
|
s: "Brainly",
|
|
sc: "Academic",
|
|
t: "brly",
|
|
u: "https://brainly.com/app/ask?entry=hero&q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "duckduckgo.com",
|
|
r: 0,
|
|
s: "BroadSign",
|
|
sc: "General",
|
|
t: "broadsign",
|
|
u: "https://duckduckgo.com/?q=site%3Abroadsign.com+{{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "bropages.org",
|
|
r: 0,
|
|
s: "BroPages",
|
|
sc: "Sysadmin",
|
|
t: "bro",
|
|
u: "http://bropages.org/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "brockhaus.de",
|
|
r: 0,
|
|
s: "Brockhaus",
|
|
sc: "Reference",
|
|
t: "brockhaus",
|
|
u: "https://brockhaus.de/search/?t=enzy&q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.bro.org",
|
|
r: 0,
|
|
s: "The Bro Network Security Monitor",
|
|
sc: "Sysadmin",
|
|
t: "bro-ids",
|
|
u: "https://www.bro.org/sphinx/search.html?check_keywords=yes&q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "broncowine.com",
|
|
r: 0,
|
|
s: "Bronco Wine Company",
|
|
sc: "Online",
|
|
t: "bronco",
|
|
u: "http://broncowine.com/woocommerce-search/?cat_in=&rs={{{s}}}&search_in=product&search_other=product",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.brookings.edu",
|
|
r: 0,
|
|
s: "Brookings Institution",
|
|
sc: "Academic",
|
|
t: "brook",
|
|
u: "https://www.brookings.edu/search/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "search.library.brown.edu",
|
|
r: 0,
|
|
s: "Brown University Library",
|
|
sc: "Academic",
|
|
t: "brown",
|
|
u: "https://search.library.brown.edu/?utf8=\u2713&q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.brownells.com",
|
|
r: 0,
|
|
s: "Brownells",
|
|
sc: "Online",
|
|
t: "brownells",
|
|
u: "https://www.brownells.com/search/index.htm?k={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "search.library.brown.edu",
|
|
r: 0,
|
|
s: "Brown University Library",
|
|
sc: "Academic",
|
|
t: "brownlib",
|
|
u: "https://search.library.brown.edu/?utf8=\u2713&q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "w2.brreg.no",
|
|
r: 4,
|
|
s: "Br\u00f8nn\u00f8ysundregistrene",
|
|
sc: "Search",
|
|
t: "brreg",
|
|
u: "http://w2.brreg.no/enhet/sok/treffliste.jsp?navn={{{s}}} &orgform=0&fylke=0&kommune=0",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "brawlstars.fandom.com",
|
|
r: 0,
|
|
s: "Brawl Stars Wiki",
|
|
sc: "Games (specific)",
|
|
t: "brst",
|
|
u: "https://brawlstars.fandom.com/wiki/Special:Search?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.britannica.com",
|
|
r: 5,
|
|
s: "Britannyca",
|
|
sc: "Reference",
|
|
t: "brt",
|
|
u: "http://www.britannica.com/search?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.baroteam.fr",
|
|
r: 0,
|
|
s: "Baroteam",
|
|
sc: "Games (general)",
|
|
t: "brtm",
|
|
u: "https://www.baroteam.fr/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "brumario.usal.es",
|
|
r: 0,
|
|
s: "Biblioteca - Universidad de Salamanca",
|
|
sc: "Academic",
|
|
t: "brumario",
|
|
u: "http://brumario.usal.es/search/?searchtype=X&searcharg={{{s}}} &op=Buscar&SORT=D&searchscope=",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "welovebrussels.org",
|
|
r: 0,
|
|
s: "We Love Brussels",
|
|
sc: "Events",
|
|
t: "brussels",
|
|
u: "https://welovebrussels.org/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.brutsellog.nl",
|
|
r: 0,
|
|
s: "Brutsellog Eetblog",
|
|
sc: "Blogs (intl)",
|
|
t: "brutsel",
|
|
u: "https://www.brutsellog.nl/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.crummy.com",
|
|
r: 0,
|
|
s: "Beautifulsoup",
|
|
sc: "Languages (python)",
|
|
t: "bs4",
|
|
u: "https://www.crummy.com/software/BeautifulSoup/bs4/doc/search.html?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "bsaber.com",
|
|
r: 0,
|
|
s: "BeastSaber",
|
|
sc: "Games (general)",
|
|
t: "bsaber",
|
|
u: "https://bsaber.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.biblesociety.org.au",
|
|
r: 0,
|
|
s: "Bible Society Australia",
|
|
sc: "Reference (religion)",
|
|
t: "bsa",
|
|
u: "https://www.biblesociety.org.au/?s={{{s}}}&x=0&y=0",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.bsag.de",
|
|
r: 0,
|
|
s: "Bremer Stra\u00dfenbahn AG",
|
|
sc: "Tools",
|
|
t: "bsag",
|
|
u: "https://www.bsag.de/index.php?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "opacplus.bsb-muenchen.de",
|
|
r: 0,
|
|
s: "Bayerische Staatsbibliothek",
|
|
sc: "Academic",
|
|
t: "bsb",
|
|
u: "https://opacplus.bsb-muenchen.de/InfoGuideClient/start.do?Login=opacext&BaseURL=https%3a%2f%2fopacplus.bsb-muenchen.de%2fInfoGuideClient%2fstart.do%3fLogin%3dopacext&Query=-1=%22{{{s}}}%22",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.bing.com",
|
|
r: 25,
|
|
s: "Bing Shopping",
|
|
sc: "Online",
|
|
t: "bs",
|
|
u: "https://www.bing.com/shop?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.freebsd.org",
|
|
r: 0,
|
|
s: "FreeBSD",
|
|
sc: "Sysadmin (FreeBSD)",
|
|
t: "bsdman",
|
|
u: "http://www.freebsd.org/cgi/man.cgi?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.businessinsider.com",
|
|
r: 5,
|
|
s: "Business Insider",
|
|
sc: "Business",
|
|
t: "bsi",
|
|
u: "http://www.businessinsider.com/s?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "shop.bsigroup.com",
|
|
r: 0,
|
|
s: "BSI Shop",
|
|
sc: "Design",
|
|
t: "bsishop",
|
|
u: "https://shop.bsigroup.com/SearchResults/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.signbsl.com",
|
|
r: 0,
|
|
s: "SignBSL",
|
|
sc: "Reference (words)",
|
|
t: "bsl",
|
|
u: "http://www.signbsl.com/sign/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.bing.com",
|
|
r: 4,
|
|
s: "Bing Social",
|
|
sc: "Social",
|
|
t: "bsocial",
|
|
u: "https://www.bing.com/social/search/updates?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.blendswap.com",
|
|
r: 0,
|
|
s: "blendswap.com",
|
|
sc: "Tools",
|
|
t: "bsp",
|
|
u: "https://www.blendswap.com/blends/search?keywords={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.blueskyrotor.com",
|
|
r: 16,
|
|
s: "BlueSkyRotor",
|
|
sc: "Companies",
|
|
t: "bsr",
|
|
u: "http://www.blueskyrotor.com/performance/search/index.php?keyword={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.biostars.org",
|
|
r: 0,
|
|
s: "Biostars",
|
|
sc: "Academic",
|
|
t: "bstar",
|
|
u: "https://www.biostars.org/local/search/page/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.bundlestars.com",
|
|
r: 0,
|
|
s: "Bundle Stars",
|
|
sc: "Tech",
|
|
t: "bstars",
|
|
u: "https://www.bundlestars.com/en/games?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.barbershoptags.com",
|
|
r: 0,
|
|
s: "Barbershop Tags",
|
|
sc: "Music",
|
|
t: "bst",
|
|
u: "http://www.barbershoptags.com/dbpage.php?pg=tags&go=Go&_searchq={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "bladeandsoul.gamepedia.com",
|
|
r: 0,
|
|
s: "Blade and Soul Wiki",
|
|
sc: "Games (general)",
|
|
t: "bsw",
|
|
u: "https://bladeandsoul.gamepedia.com/index.php?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.ultimate-guitar.com",
|
|
r: 0,
|
|
s: "UltimateGuitar.com",
|
|
sc: "Misc",
|
|
t: "btabs",
|
|
u: "http://www.ultimate-guitar.com/search.php?s={{{s}}}&w=songs",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.blockchain.com",
|
|
r: 0,
|
|
s: "Blockchain",
|
|
sc: "Cryptocurrency",
|
|
t: "btcaddr",
|
|
u: "https://www.blockchain.com/btc/address/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.blockchain.com",
|
|
r: 21,
|
|
s: "Blockchain.com",
|
|
sc: "Tools",
|
|
t: "btc",
|
|
u: "https://www.blockchain.com/search?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "bitcoinity.org",
|
|
r: 28,
|
|
s: "Bitcoinity Markets",
|
|
sc: "Cryptocurrency",
|
|
t: "btcm",
|
|
u: "http://bitcoinity.org/markets/{{{s}}}/USD",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.bing.com",
|
|
r: 41,
|
|
s: "Microsoft/Bing Translator",
|
|
sc: "Tools",
|
|
t: "bt",
|
|
u: "https://www.bing.com/translator?text={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.behindthename.com",
|
|
r: 21,
|
|
s: "Behind the Name",
|
|
sc: "Reference (words)",
|
|
t: "btname",
|
|
u: "https://www.behindthename.com/names/search.php?terms={{{s}}}&type=",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "btrfs.wiki.kernel.org",
|
|
r: 0,
|
|
s: "Btrfs wiki",
|
|
sc: "Sysadmin",
|
|
t: "btrfs",
|
|
u: "https://btrfs.wiki.kernel.org/index.php?title=Special%3ASearch&search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "bugs.debian.org",
|
|
r: 3,
|
|
s: "Debian Bug Tracking System",
|
|
sc: "Sysadmin (debian)",
|
|
t: "bts",
|
|
u: "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "bttf.duckduckgo.com",
|
|
r: 0,
|
|
s: "DuckDuckGo bttf",
|
|
sc: "Search (DDG)",
|
|
t: "bttf",
|
|
u: "http://bttf.duckduckgo.com/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.microsofttranslator.com",
|
|
r: 36,
|
|
s: "Microsoft/Bing Translator URL",
|
|
sc: "Tools",
|
|
t: "bturl",
|
|
u: "http://www.microsofttranslator.com/bv.aspx?a={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.bookbub.com",
|
|
r: 0,
|
|
s: "BookBub",
|
|
sc: "Search",
|
|
t: "bub",
|
|
u: "https://www.bookbub.com/search?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "bulbapedia.bulbagarden.net",
|
|
r: 450,
|
|
s: "Bulbapedia",
|
|
sc: "Reference (fun)",
|
|
t: "bu",
|
|
u: "https://bulbapedia.bulbagarden.net/w/index.php?title=Special%3ASearch&search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "ucm.summon.serialssolutions.com",
|
|
r: 0,
|
|
s: "BUCea - Bibliotecas UCM",
|
|
sc: "Academic",
|
|
t: "bucea",
|
|
u: "http://ucm.summon.serialssolutions.com/es-ES/#!/search?ho=t&fvf=ContentType,Newspaper%20Article,t&l=es-ES&q={{{s}}}&pg=buscador&utf8=%E2%9C%93",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.buch7.de",
|
|
r: 0,
|
|
s: "Buch7",
|
|
sc: "Online",
|
|
t: "buch7",
|
|
u: "https://www.buch7.de/store/simple_search_results?utf8=%E2%9C%93&navkat=&search={{{s}}}&commit.x=0&commit.y=0",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "buchonline.info",
|
|
r: 0,
|
|
s: "Buchonline",
|
|
sc: "Aggregators",
|
|
t: "buch",
|
|
u: "https://buchonline.info/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.buchpreis24.de",
|
|
r: 0,
|
|
s: "Buchpreis24",
|
|
sc: "Online (marketplace)",
|
|
t: "buchpreis24",
|
|
u: "https://www.buchpreis24.de/stichwort/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.budgetbytes.com",
|
|
r: 0,
|
|
s: "Budget Bytes",
|
|
sc: "Food",
|
|
t: "budgetbytes",
|
|
u: "http://www.budgetbytes.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "buprimo.hosted.exlibrisgroup.com",
|
|
r: 0,
|
|
s: "BU Alumni Medical Library- E-Journals",
|
|
sc: "Academic",
|
|
t: "buej",
|
|
u: "https://buprimo.hosted.exlibrisgroup.com/primo-explore/search?query=any,contains,{{{s}}}&tab=default_tab&search_scope=default_scope&vid=BU&lang=en_US&offset=0",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.buffalolib.org",
|
|
r: 0,
|
|
s: "Buffalo & Erie County Public Library",
|
|
sc: "Reference",
|
|
t: "buffalolib",
|
|
u: "https://www.buffalolib.org/vufind/Union/Search?lookfor={{{s}}}&type=keyword&submit=Find&sort=title",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "buffy.wikia.com",
|
|
r: 0,
|
|
s: "Buffyverse Wiki",
|
|
sc: "TV",
|
|
t: "buffy",
|
|
u: "http://buffy.wikia.com/wiki/Special:Search?search= {{{s}}}&go=Go",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.bug.hr",
|
|
r: 0,
|
|
s: "Bug Online Forum",
|
|
sc: "Blogs (intl)",
|
|
t: "bugforum",
|
|
u: "https://www.bug.hr/forum/search/topic/?txt={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "bugguide.net",
|
|
r: 3,
|
|
s: "Bug Guide",
|
|
sc: "Reference (science)",
|
|
t: "bugguide",
|
|
u: "http://bugguide.net/index.php?q=search&keys={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "bugzilla.mozilla.org",
|
|
r: 3,
|
|
s: "Bugzilla",
|
|
sc: "Programming",
|
|
t: "bugzilla",
|
|
u: "https://bugzilla.mozilla.org/buglist.cgi?quicksearch={{{s}}} ",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.buienalarm.nl",
|
|
r: 0,
|
|
s: "http://www.buienalarm.nl/",
|
|
sc: "Weather",
|
|
t: "buien",
|
|
u: "http://www.buienalarm.nl/location/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.build.com",
|
|
r: 0,
|
|
s: "Build.com",
|
|
sc: "Big box/department",
|
|
t: "build",
|
|
u: "http://www.build.com/index.cfm?page=search:browse&term={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "builtwith.com",
|
|
r: 0,
|
|
s: "BuiltWith",
|
|
sc: "Tools",
|
|
t: "built",
|
|
u: "https://builtwith.com/?{{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "builtwith.com",
|
|
r: 10,
|
|
s: "BuiltWith",
|
|
sc: "Domains",
|
|
t: "builtwith",
|
|
u: "https://builtwith.com/?{{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.bukalapak.com",
|
|
r: 0,
|
|
s: "Bukalapak",
|
|
sc: "Online (marketplace)",
|
|
t: "bukalapak",
|
|
u: "https://www.bukalapak.com/products?utf8=%E2%9C%93&search%5Bkeywords%5D={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "dev.bukkit.org",
|
|
r: 0,
|
|
s: "BukkitDev",
|
|
sc: "Games (Minecraft)",
|
|
t: "bukdev",
|
|
u: "https://dev.bukkit.org/search?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.curseforge.com",
|
|
r: 0,
|
|
s: "Bukkit Plugins Search",
|
|
sc: "Games (Minecraft)",
|
|
t: "bukkit",
|
|
u: "https://www.curseforge.com/minecraft/bukkit-plugins/search?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "bulbapedia.bulbagarden.net",
|
|
r: 1148,
|
|
s: "Bulbapedia",
|
|
sc: "Reference (fun)",
|
|
t: "bulba",
|
|
u: "http://bulbapedia.bulbagarden.net/w/index.php?title=Special%3ASearch&search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "bulbapedia.bulbagarden.net",
|
|
r: 97,
|
|
s: "Bulbapedia",
|
|
sc: "Games (Pokemon)",
|
|
t: "bulbapedia",
|
|
u: "http://bulbapedia.bulbagarden.net/w/index.php?title=Special:Search&search={{{s}}}&go=Go",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "blog.bulletproof.com",
|
|
r: 0,
|
|
s: "Bulletproof blog",
|
|
sc: "Health",
|
|
t: "bulletproof",
|
|
u: "https://blog.bulletproof.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.bullmoose.com",
|
|
r: 7,
|
|
s: "Bull Moose",
|
|
sc: "Misc",
|
|
t: "bullmoose",
|
|
u: "http://www.bullmoose.com/search?q={{{s}}}&SC=1",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.mangaupdates.com",
|
|
r: 128,
|
|
s: "Baka-Updates Manga",
|
|
sc: "Comics",
|
|
t: "bum",
|
|
u: "http://www.mangaupdates.com/search.html?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.bund.net",
|
|
r: 0,
|
|
s: "Bund f\u00fcr Umwelt und Naturschutz",
|
|
sc: "Health",
|
|
t: "bund",
|
|
u: "https://www.bund.net/service/suchergebnis/?L=0&q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "bundlephobia.com",
|
|
r: 15,
|
|
s: "BundlePhobia",
|
|
sc: "Downloads (code)",
|
|
t: "bundle",
|
|
u: "https://bundlephobia.com/result?p={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "bundlephobia.com",
|
|
r: 8,
|
|
s: "BundlePhobia",
|
|
sc: "Libraries/Frameworks",
|
|
t: "bundlephobia",
|
|
u: "https://bundlephobia.com/result?p={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.bundlestars.com",
|
|
r: 0,
|
|
s: "Bundle Stars",
|
|
sc: "Tech",
|
|
t: "bundles",
|
|
u: "https://www.bundlestars.com/en/games?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.lawyersaroundme.com",
|
|
r: 0,
|
|
s: "Lawyers Around Me",
|
|
sc: "Business",
|
|
t: "bung",
|
|
u: "http://www.lawyersaroundme.com/search/?term={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.bunnings.com.au",
|
|
r: 6,
|
|
s: "Bunnings Warehouse",
|
|
sc: "Big box/department",
|
|
t: "bunnings",
|
|
u: "https://www.bunnings.com.au/search/products?q={{{s}}}&redirectFrom=Any",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "together.bunq.com",
|
|
r: 0,
|
|
s: "bunq Together",
|
|
sc: "Tools",
|
|
t: "bunq",
|
|
u: "https://together.bunq.com/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.bunnings.com.au",
|
|
r: 0,
|
|
s: "Bunnings Warehouse",
|
|
sc: "Big box/department",
|
|
t: "bunware",
|
|
u: "http://www.bunnings.com.au/search/products?q={{{s}}} &redirectFrom=Any",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "catalogue.bu.univ-paris8.fr",
|
|
r: 0,
|
|
s: "Universit\u00e9 Paris 8 (Biblioth\u00e8que)",
|
|
sc: "Academic",
|
|
t: "bup8",
|
|
u: "http://catalogue.bu.univ-paris8.fr/cgi-bin/koha/opac-search.pl?idx=&q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.burbuja.info",
|
|
r: 0,
|
|
s: "Burbuja.info",
|
|
sc: "Forum",
|
|
t: "burbuja",
|
|
u: "http://www.burbuja.info/inmobiliaria/search.php?do=process&query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "burst.shopify.com",
|
|
r: 0,
|
|
s: "Burst",
|
|
sc: "Images",
|
|
t: "burst",
|
|
u: "https://burst.shopify.com/photos/search?utf8=\u2713&q={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.basketusa.com",
|
|
r: 0,
|
|
s: "Basket USA",
|
|
sc: "Specialty",
|
|
t: "busa",
|
|
u: "http://www.basketusa.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.buscape.com.br",
|
|
r: 0,
|
|
s: "Buscap\u00e9",
|
|
sc: "Services",
|
|
t: "buscape",
|
|
u: "http://www.buscape.com.br/cprocura?produto={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.business.gov.au",
|
|
r: 0,
|
|
s: "Business.gov.au",
|
|
sc: "Government",
|
|
t: "businessgovau",
|
|
u: "https://www.business.gov.au/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "bustimes.org",
|
|
r: 0,
|
|
s: "Bus Times",
|
|
sc: "Travel",
|
|
t: "bustimes",
|
|
u: "https://bustimes.org/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.com",
|
|
r: 32,
|
|
s: "Amazon.com",
|
|
sc: "Online",
|
|
t: "buy",
|
|
u: "https://www.amazon.com/s?k={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.buycott.com",
|
|
r: 0,
|
|
s: "Buycott",
|
|
sc: "Government",
|
|
t: "buycott",
|
|
u: "http://www.buycott.com/search/all?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "buyee.jp",
|
|
r: 0,
|
|
s: "buyee",
|
|
sc: "Online (marketplace)",
|
|
t: "buyee",
|
|
u: "http://buyee.jp/item/search?query={{{s}}} ",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.buytruckwheels.com",
|
|
r: 0,
|
|
s: "Buy Truck Wheels",
|
|
sc: "Online",
|
|
t: "buytruckwheels",
|
|
u: "http://www.buytruckwheels.com/index.php?route=product/search&filter_name={{{s}}} ",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.buzer.de",
|
|
r: 0,
|
|
s: "www.buzer.de",
|
|
sc: "Law",
|
|
t: "buz",
|
|
u: "https://www.buzer.de/s1.htm?a=&g={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.buzzfeed.com",
|
|
r: 11,
|
|
s: "Buzzfeed",
|
|
sc: "Blogs",
|
|
t: "buzzfeed",
|
|
u: "https://www.buzzfeed.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.playbuzz.com",
|
|
r: 0,
|
|
s: "Playbuzz",
|
|
sc: "Misc",
|
|
t: "buzz",
|
|
u: "http://www.playbuzz.com/search?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.bing.com",
|
|
r: 1297,
|
|
s: "Bing Videos",
|
|
sc: "Search",
|
|
t: "bv",
|
|
u: "https://www.bing.com/videos?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "fahrinfo.bvg.de",
|
|
r: 4,
|
|
s: "BVG",
|
|
sc: "Travel",
|
|
t: "bvg",
|
|
u: "https://fahrinfo.bvg.de/Fahrinfo/bin/query.bin/?pk_campaign=BVG.de_Eingabe&from={{{s}}} ",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.bing.com",
|
|
r: 11,
|
|
s: "Bing Videos",
|
|
sc: "Search",
|
|
t: "bvideo",
|
|
u: "https://www.bing.com/videos?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.bing.com",
|
|
r: 3,
|
|
s: "Bing Videos",
|
|
sc: "Search",
|
|
t: "bvideos",
|
|
u: "https://www.bing.com/videos?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "pesquisa.bvsalud.org",
|
|
r: 0,
|
|
s: "Biblioteca Virtual em Sa\u00fade",
|
|
sc: "Health",
|
|
t: "bvs",
|
|
u: "http://pesquisa.bvsalud.org/regional/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.bing.com",
|
|
r: 4,
|
|
s: "Bing Weather",
|
|
sc: "Weather",
|
|
t: "bw",
|
|
u: "https://www.bing.com/weather/forecast?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.betterworldbooks.com",
|
|
r: 0,
|
|
s: "Better World Books",
|
|
sc: "Online",
|
|
t: "bwbooks",
|
|
u: "http://www.betterworldbooks.com/{{{s}}}-H0.aspx?SearchTerm={{{s}}} ",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "belfrycomics.net",
|
|
r: 0,
|
|
s: "Belfry Web Comics",
|
|
sc: "Comics",
|
|
t: "bwc",
|
|
u: "http://belfrycomics.net/pg/?searchtype=Titles&searchpat={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.bing.com",
|
|
r: 0,
|
|
s: "Bing",
|
|
sc: "Search",
|
|
t: "bweek",
|
|
u: 'https://www.bing.com/search?q={{{s}}}&filters=ex1%3a""ez2""',
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "bws.com.au",
|
|
r: 0,
|
|
s: "BWS",
|
|
sc: "Big box/department",
|
|
t: "bws",
|
|
u: "https://bws.com.au/search?searchTerm={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "bxr.su",
|
|
r: 0,
|
|
s: "BSD Cross Reference",
|
|
sc: "Sysadmin",
|
|
t: "bxr",
|
|
u: "http://bxr.su/search?refs={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.byggahus.se",
|
|
r: 0,
|
|
s: "ByggaHus.se",
|
|
sc: "Topical",
|
|
t: "byggahus",
|
|
u: "https://www.byggahus.se/sokresultat/?q={{{s}}} ",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.byond.com",
|
|
r: 0,
|
|
s: "Byond",
|
|
sc: "Games (general)",
|
|
t: "byond",
|
|
u: "http://www.byond.com/games/?text={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.byte-post.com",
|
|
r: 0,
|
|
s: "BytePost",
|
|
sc: "Blogs",
|
|
t: "byte",
|
|
u: "https://www.byte-post.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.byu.edu",
|
|
r: 0,
|
|
s: "Brigham Young University",
|
|
sc: "Learning",
|
|
t: "byu",
|
|
u: "https://www.byu.edu/search-all?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.byui.edu",
|
|
r: 0,
|
|
s: "Brigham Young University - Idaho",
|
|
sc: "Search",
|
|
t: "byui",
|
|
u: "https://www.byui.edu/search/result?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "yadda.icm.edu.pl",
|
|
r: 0,
|
|
s: "yadda.icm.edu",
|
|
sc: "Reference (science)",
|
|
t: "bztch",
|
|
u: "https://yadda.icm.edu.pl/baztech/search/page.action?q=sc.general*c_0all_0eq.{{{s}}}*l_0&qt=SEARCH",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.commander1024.de",
|
|
r: 0,
|
|
s: "Dem Commander1024 sein Blog",
|
|
sc: "Blogs (intl)",
|
|
t: "c1024",
|
|
u: "http://www.commander1024.de/wordpress/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.channel21.de",
|
|
r: 0,
|
|
s: "Channel21",
|
|
sc: "Online",
|
|
t: "c21",
|
|
u: "https://www.channel21.de/catalogsearch/result/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.chrono24.com",
|
|
r: 0,
|
|
s: "Chrono24",
|
|
sc: "Online (intl)",
|
|
t: "c24",
|
|
u: "https://www.chrono24.com/search/index.htm?watchTypes=&query={{{s}}}&dosearch=true&searchexplain=1&accessoryTypes=",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.camptocamp.org",
|
|
r: 0,
|
|
s: "Camptocamp",
|
|
sc: "Sports",
|
|
t: "c2c",
|
|
u: "http://www.camptocamp.org/summits/list/snam/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.camptocamp.org",
|
|
r: 0,
|
|
s: "http://www.camptocamp.org/",
|
|
sc: "Sports",
|
|
t: "c2cforum",
|
|
u: "http://www.camptocamp.org/documents/search?type=forums&q={{{s}}} ",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.camptocamp.org",
|
|
r: 0,
|
|
s: "Camp to Camp",
|
|
sc: "Sports",
|
|
t: "c2csite",
|
|
u: "http://www.camptocamp.org/documents/search?type=sites&q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.camptocamp.org",
|
|
r: 0,
|
|
s: "Camp to Camp",
|
|
sc: "Sports",
|
|
t: "c2csummit",
|
|
u: "http://www.camptocamp.org/documents/search?type=summits&q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "translate.google.com",
|
|
r: 4,
|
|
s: "Google Translate (Czech to English)",
|
|
sc: "Google",
|
|
t: "c2e",
|
|
u: "https://translate.google.com/#cs/en/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "c2.com",
|
|
r: 10,
|
|
s: "Wiki Wiki Web",
|
|
sc: "Blogs",
|
|
t: "c2",
|
|
u: "http://c2.com/cgi/fullSearch?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "media.ccc.de",
|
|
r: 0,
|
|
s: "C3TV",
|
|
sc: "Video",
|
|
t: "c3tv",
|
|
u: "https://media.ccc.de/search/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.channel4.com",
|
|
r: 0,
|
|
s: "Channel 4",
|
|
sc: "TV",
|
|
t: "c4",
|
|
u: "http://www.channel4.com/search/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.c64-wiki.de",
|
|
r: 0,
|
|
s: "C64-Wiki (de)",
|
|
sc: "Social",
|
|
t: "c64wde",
|
|
u: "http://www.c64-wiki.de/index.php?title=Spezial%3ASuche&go=Seite&search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "cycling74.com",
|
|
r: 0,
|
|
s: "Cycling '74",
|
|
sc: "Programming",
|
|
t: "c74",
|
|
u: "https://cycling74.com/search/page/1/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.caa.ca",
|
|
r: 0,
|
|
s: "Canadian Automobile Association",
|
|
sc: "Search (non-US)",
|
|
t: "caa",
|
|
u: "http://www.caa.ca/?s={{{s}}}&submit=Search&lang=en",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.amazon.ca",
|
|
r: 431,
|
|
s: "Amazon Canada",
|
|
sc: "Online",
|
|
t: "ca",
|
|
u: "https://www.amazon.ca/s?k={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.cabq.gov",
|
|
r: 0,
|
|
s: "City of Albuquerque",
|
|
sc: "Government",
|
|
t: "cabq",
|
|
u: "http://www.cabq.gov/searchresults?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "webcache.googleusercontent.com",
|
|
r: 7,
|
|
s: "Google Cache",
|
|
sc: "Google",
|
|
t: "cached",
|
|
u: "https://webcache.googleusercontent.com/search?q=cache:{{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "webcache.googleusercontent.com",
|
|
r: 13,
|
|
s: "Google Cached Pages",
|
|
sc: "Google",
|
|
t: "cachedview",
|
|
u: "http://webcache.googleusercontent.com/search?q=cache:{{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "webcache.googleusercontent.com",
|
|
r: 498,
|
|
s: "Google Cache",
|
|
sc: "Google",
|
|
t: "cache",
|
|
u: "https://webcache.googleusercontent.com/search?q=cache:{{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "conjd.cactus2000.de",
|
|
r: 0,
|
|
s: "Cactus2000 - Conjugation Table (German)",
|
|
sc: "Tools",
|
|
t: "cact",
|
|
u: "http://conjd.cactus2000.de/index.php?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "shop.cactusmart.com",
|
|
r: 0,
|
|
s: "Cactus Mart",
|
|
sc: "Online",
|
|
t: "cactus",
|
|
u: "https://shop.cactusmart.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "shop.cactusmart.com",
|
|
r: 0,
|
|
s: "Cactus Mart",
|
|
sc: "Online",
|
|
t: "cactusmart",
|
|
u: "https://shop.cactusmart.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.caddetails.com",
|
|
r: 3,
|
|
s: "CADdetails",
|
|
sc: "Downloads",
|
|
t: "cad",
|
|
u: "https://www.caddetails.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.cadence.com",
|
|
r: 0,
|
|
s: "Cadence Community",
|
|
sc: "Design",
|
|
t: "cadence",
|
|
u: "https://www.cadence.com/content/cadence-www/global/en_US/home/search.html?k={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.cafepress.com",
|
|
r: 0,
|
|
s: "CafePress",
|
|
sc: "Online",
|
|
t: "cafepress",
|
|
u: "https://www.cafepress.com/+{{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.carrefour.fr",
|
|
r: 0,
|
|
s: "Carrefour",
|
|
sc: "Online (marketplace)",
|
|
t: "cafr",
|
|
u: "http://www.carrefour.fr/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.cagematch.net",
|
|
r: 16,
|
|
s: "Cagematch - The Internet Wrestling Database",
|
|
sc: "Sports",
|
|
t: "cagematch",
|
|
u: "http://www.cagematch.net/?id=666&search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "michaelyingling.com",
|
|
r: 4,
|
|
s: "Calvin and Hobbes Search Engine",
|
|
sc: "Comics",
|
|
t: "cah",
|
|
u: "http://michaelyingling.com/random/calvin_and_hobbes/search.php?phrase={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.cardhoarder.com",
|
|
r: 0,
|
|
s: "Cardhoarder",
|
|
sc: "Online (marketplace)",
|
|
t: "caho",
|
|
u: "https://www.cardhoarder.com/cards?data[search]={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.cairn.info",
|
|
r: 4,
|
|
s: "Cairn",
|
|
sc: "Academic",
|
|
t: "cairn",
|
|
u: "http://www.cairn.info/resultats_recherche.php?searchTerm={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.cajunlyrics.com",
|
|
r: 0,
|
|
s: "CajunLyrics",
|
|
sc: "Music (Lyrics)",
|
|
t: "CajunLyrics",
|
|
u: "https://www.cajunlyrics.com/?page=search&word={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "book.cakephp.org",
|
|
r: 0,
|
|
s: "Cakephp 2 Book",
|
|
sc: "Libraries/Frameworks",
|
|
t: "cake2book",
|
|
u: "http://book.cakephp.org/2.0/en/search.html?q={{{s}}} ",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "book.cakephp.org",
|
|
r: 0,
|
|
s: "CakePHP 2",
|
|
sc: "Libraries/Frameworks",
|
|
t: "cake2",
|
|
u: "http://book.cakephp.org/2.0/en/search.html?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "book.cakephp.org",
|
|
r: 0,
|
|
s: "CakePHP Cakebook 3.x",
|
|
sc: "Languages (php)",
|
|
t: "cakebook",
|
|
u: "https://book.cakephp.org/3.0/en/search.html?check_keywords=yes&area=default&q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "api.cakephp.org",
|
|
r: 0,
|
|
s: "CakePHP API",
|
|
sc: "Languages (php)",
|
|
t: "cake",
|
|
u: "http://api.cakephp.org/search/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "duckduckgo.com",
|
|
r: 58,
|
|
s: "DuckDuckGo Calculator",
|
|
sc: "Tools",
|
|
t: "calc",
|
|
u: "https://duckduckgo.com/?q={{{s}}}&ia=calculator",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "duckduckgo.com",
|
|
r: 3,
|
|
s: "DuckDuckGo Calculator",
|
|
sc: "Tools",
|
|
t: "calculator",
|
|
u: "https://duckduckgo.com/?ia=calculator&q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "dictionary.cambridge.org",
|
|
r: 189,
|
|
s: "Cambridge Dictionary",
|
|
sc: "Reference",
|
|
t: "cald",
|
|
u: "http://dictionary.cambridge.org/search/british/?source=duckduckgo&q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.google.com",
|
|
r: 32,
|
|
s: "Google Calendar",
|
|
sc: "Google",
|
|
t: "calendar",
|
|
u: "https://www.google.com/calendar/b/0/render?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "callook.info",
|
|
r: 0,
|
|
s: "Callook",
|
|
sc: "Social",
|
|
t: "callook",
|
|
u: "http://callook.info/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "qrzcq.com",
|
|
r: 0,
|
|
s: "QRZCQ",
|
|
sc: "Reference",
|
|
t: "call",
|
|
u: "http://qrzcq.com/?q={{{s}}}&action=search&page=search",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.caloriecount.com",
|
|
r: 0,
|
|
s: "Calorie Count",
|
|
sc: "Food",
|
|
t: "cals",
|
|
u: "https://www.caloriecount.com/search/foods?searchpro={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "michaelyingling.com",
|
|
r: 0,
|
|
s: "Calvin And Hobbes",
|
|
sc: "Comics",
|
|
t: "calvinandhobbes",
|
|
u: "http://michaelyingling.com/random/calvin_and_hobbes/search.php?phrase={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.z28.com",
|
|
r: 0,
|
|
s: "Camaro Forums @ Z28.com",
|
|
sc: "Forum",
|
|
t: "camaro",
|
|
u: "https://www.z28.com/search/search?keywords={{{s}}}&order=relevance",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "dictionary.cambridge.org",
|
|
r: 277,
|
|
s: "Cambridge Dictionary",
|
|
sc: "Reference (words)",
|
|
t: "cambridge",
|
|
u: "http://dictionary.cambridge.org/dictionary/english/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "dictionary.cambridge.org",
|
|
r: 386,
|
|
s: "http://dictionary.cambridge.org",
|
|
sc: "Reference",
|
|
t: "camd",
|
|
u: "http://dictionary.cambridge.org/search/american-english/direct/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "camelcamelcamel.com",
|
|
r: 62,
|
|
s: "CamelCamelCamel",
|
|
sc: "Online",
|
|
t: "camel",
|
|
u: "http://camelcamelcamel.com/products?sq={{{s}}} ",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "de.camelcamelcamel.com",
|
|
r: 0,
|
|
s: "CamelCamelCamel (German)",
|
|
sc: "Services",
|
|
t: "camelde",
|
|
u: "https://de.camelcamelcamel.com/products?sq={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "fr.camelcamelcamel.com",
|
|
r: 0,
|
|
s: "fr.camelcamelcamel.com",
|
|
sc: "Online",
|
|
t: "camelfr",
|
|
u: "https://fr.camelcamelcamel.com/search?sq={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.camerapricebuster.co.uk",
|
|
r: 0,
|
|
s: "Camera Price Buster",
|
|
sc: "Online (deals)",
|
|
t: "camerapb",
|
|
u: "https://www.camerapricebuster.co.uk/Search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Translation",
|
|
d: "dictionary.cambridge.org",
|
|
r: 0,
|
|
s: "Cambridge Dictionary Spanish-English",
|
|
sc: "General",
|
|
t: "camesen",
|
|
u: "https://dictionary.cambridge.org/dictionary/spanish-english/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "dictionary.cambridge.org",
|
|
r: 0,
|
|
s: "Cambridge French-English Dictionary",
|
|
sc: "Reference (words intl)",
|
|
t: "camfren",
|
|
u: "https://dictionary.cambridge.org/dictionary/french-english/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "dictionary.cambridge.org",
|
|
r: 0,
|
|
s: "Cambridge University Press",
|
|
sc: "Reference",
|
|
t: "camg",
|
|
u: "http://dictionary.cambridge.org/us/grammar/british-grammar/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "idiscover.lib.cam.ac.uk",
|
|
r: 0,
|
|
s: "University of Cambridge Libraries iDiscover",
|
|
sc: "Academic",
|
|
t: "camlib",
|
|
u: "http://idiscover.lib.cam.ac.uk/primo-explore/search?query=any,contains,{{{s}}}&tab=cam_lib_coll&search_scope=SCOP_CAM_ALL&vid=44CAM_PROD&lang=en_US&offset=0",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "dictionary.cambridge.org",
|
|
r: 0,
|
|
s: "Cambridge PL",
|
|
sc: "Reference (words intl)",
|
|
t: "campl",
|
|
u: "http://dictionary.cambridge.org/dictionary/english-polish/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "dictionary.cambridge.org",
|
|
r: 0,
|
|
s: "Cambridge Polish-English Dictionary",
|
|
sc: "Reference (words intl)",
|
|
t: "camplen",
|
|
u: "https://dictionary.cambridge.org/dictionary/polish-english/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "accucampus.net",
|
|
r: 0,
|
|
s: "AccuCampus",
|
|
sc: "Search (Private)",
|
|
t: "campus",
|
|
u: "https://accucampus.net/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "navigator.tu-dresden.de",
|
|
r: 0,
|
|
s: "TU Dresden Campus Navigator",
|
|
sc: "Academic",
|
|
t: "campusnav",
|
|
u: "https://navigator.tu-dresden.de/erweitertesuche/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Translation",
|
|
d: "dictionary.cambridge.org",
|
|
r: 40,
|
|
s: "Cambridge Traditional Chinese",
|
|
sc: "General",
|
|
t: "camtw",
|
|
u: "https://dictionary.cambridge.org/dictionary/english-chinese-traditional/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "search.cam.ac.uk",
|
|
r: 6,
|
|
s: "University of Cambridge",
|
|
sc: "Academic",
|
|
t: "cam",
|
|
u: "http://search.cam.ac.uk/web?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "recherche-search.gc.ca",
|
|
r: 0,
|
|
s: "Canada.ca",
|
|
sc: "Search",
|
|
t: "canada",
|
|
u: "https://recherche-search.gc.ca/rGs/s_r?cdn=canada&st=s&num=10&langs=eng&st1rt=0&s5bm3ts21rch=x&q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.canadacomputers.com",
|
|
r: 6,
|
|
s: "Canada Computers",
|
|
sc: "Tech",
|
|
t: "canadacomputers",
|
|
u: "http://www.canadacomputers.com/advanced_search_result.php?keywords={{{s}}} ",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.canadapost.ca",
|
|
r: 4,
|
|
s: "Canada Post Tracking",
|
|
sc: "Tracking",
|
|
t: "canadapost",
|
|
u: "https://www.canadapost.ca/cpotools/apps/track/personal/findByTrackNumber?trackingNumber={{{s}}}&LOCALE=en&LOCALE2=en",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.canadiantire.ca",
|
|
r: 3,
|
|
s: "Canadian Tire",
|
|
sc: "Big box/department",
|
|
t: "canadiantire",
|
|
u: "http://www.canadiantire.ca/en/search-results.html?searchByTerm=true&q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "recherche-search.gc.ca",
|
|
r: 7,
|
|
s: "Canada.ca",
|
|
sc: "Search",
|
|
t: "can",
|
|
u: "https://recherche-search.gc.ca/rGs/s_r?cdn=canada&st=s&num=10&langs=eng&st1rt=0&s5bm3ts21rch=x&q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.c-and-a.com",
|
|
r: 0,
|
|
s: "C-and-A DE",
|
|
sc: "Online",
|
|
t: "candade",
|
|
u: "https://www.c-and-a.com/webapp/wcs/stores/servlet/SearchDisplay?catalogId=10001&storeId=10153&langId=-3&articleSearch=false&searchTerm={{{s}}}&x=0&y=0",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.candlestickpatterns.org",
|
|
r: 0,
|
|
s: "Candlestick Patterns",
|
|
sc: "Tools",
|
|
t: "candlestickpatterns",
|
|
u: "http://www.candlestickpatterns.org/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.canistream.it",
|
|
r: 0,
|
|
s: "Can I Stream It?",
|
|
sc: "Movies",
|
|
t: "canistream",
|
|
u: "http://www.canistream.it/search/term/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.canistream.it",
|
|
r: 0,
|
|
s: "Can I Stream It",
|
|
sc: "Movies",
|
|
t: "canistreamit",
|
|
u: "http://www.canistream.it/search/term/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.canistream.it",
|
|
r: 0,
|
|
s: "canistream.it",
|
|
sc: "Movies",
|
|
t: "canistreammovie",
|
|
u: "http://www.canistream.it/search/movie/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.canistream.it",
|
|
r: 0,
|
|
s: "canistream.it",
|
|
sc: "TV",
|
|
t: "canistreamtv",
|
|
u: "http://www.canistream.it/search/tv/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "caniuse.com",
|
|
r: 153,
|
|
s: "Can I use...",
|
|
sc: "Languages (html)",
|
|
t: "caniuse",
|
|
u: "http://caniuse.com/#search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.canlii.ca",
|
|
r: 0,
|
|
s: "CanLII",
|
|
sc: "Law",
|
|
t: "canlii",
|
|
u: "http://www.canlii.ca/en/search/search.do?all={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.andcannabis.com",
|
|
r: 0,
|
|
s: "AND Cannabis",
|
|
sc: "Reference (science)",
|
|
t: "cannabis",
|
|
u: "https://www.andcannabis.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.usa.canon.com",
|
|
r: 0,
|
|
s: "Canon USA",
|
|
sc: "Tech",
|
|
t: "canon",
|
|
u: "https://www.usa.canon.com/internet/portal/us/home/searchresults?query={{{s}}}&searchTab=products",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.canoonet.eu",
|
|
r: 0,
|
|
s: "canoonet",
|
|
sc: "Reference (words)",
|
|
t: "canoo",
|
|
u: "http://www.canoonet.eu/services/Controller?input={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "11foot8.com",
|
|
r: 0,
|
|
s: "11foot8.com",
|
|
sc: "Video",
|
|
t: "canopener",
|
|
u: "http://11foot8.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Translation",
|
|
d: "cantonese.org",
|
|
r: 0,
|
|
s: "CC-Canto - A Cantonese Dictionary",
|
|
sc: "Google",
|
|
t: "canto",
|
|
u: "http://cantonese.org/search.php?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.cantonese.sheik.co.uk",
|
|
r: 10,
|
|
s: "CantoDict",
|
|
sc: "Reference (words intl)",
|
|
t: "cantodict",
|
|
u: "http://www.cantonese.sheik.co.uk/dictionary/search/?searchtype=1&text={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "coinmarketcap.com",
|
|
r: 19,
|
|
s: "CoinMarketCap",
|
|
sc: "Business",
|
|
t: "cap",
|
|
u: "https://coinmarketcap.com/search/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.capfriendly.com",
|
|
r: 0,
|
|
s: "CapFriendly",
|
|
sc: "Sports",
|
|
t: "capf",
|
|
u: "https://www.capfriendly.com/search?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.capital.bg",
|
|
r: 0,
|
|
s: "Capital.bg",
|
|
sc: "International",
|
|
t: "capital",
|
|
u: "https://www.capital.bg/search.php?stext={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.canadapost.ca",
|
|
r: 0,
|
|
s: "Canada Post",
|
|
sc: "Services",
|
|
t: "capost",
|
|
u: "http://www.canadapost.ca//cpotools/apps/track/personal/findByTrackNumber?trackingNumber={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.cappusa.com",
|
|
r: 0,
|
|
s: "CAPP/USA",
|
|
sc: "Online",
|
|
t: "capp",
|
|
u: "http://www.cappusa.com/catalogsearch/result/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "caranddriver.com",
|
|
r: 0,
|
|
s: "Car and Driver",
|
|
sc: "Blogs",
|
|
t: "caranddriver",
|
|
u: "http://caranddriver.com/search/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.calorieking.com.au",
|
|
r: 0,
|
|
s: "Calorie King",
|
|
sc: "Food",
|
|
t: "carbs",
|
|
u: "http://www.calorieking.com.au/foods/search.php?keywords={{{s}}}&showresults=yes&go=Search",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.carmagazine.co.uk",
|
|
r: 4,
|
|
s: "CarMagazine.co.uk",
|
|
sc: "Blogs (intl)",
|
|
t: "car",
|
|
u: "http://www.carmagazine.co.uk/GLOBAL/Search-Results/?N=0&Ntx=mode%20matchallpartial&Ntk=site&Ntt={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.cardboardconnection.com",
|
|
r: 0,
|
|
s: "https://www.cardboardconnection.com/",
|
|
sc: "Reference (fun)",
|
|
t: "cardboard",
|
|
u: "https://www.cardboardconnection.com/search-results?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.cardkingdom.com",
|
|
r: 0,
|
|
s: "CardKingdom",
|
|
sc: "Online",
|
|
t: "cardkingdom",
|
|
u: "https://www.cardkingdom.com/catalog/search?search=header&filter%5Bname%5D={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.careerbuilder.com",
|
|
r: 0,
|
|
s: "CareerBuilder",
|
|
sc: "Jobs",
|
|
t: "careerbuilder",
|
|
u: "http://www.careerbuilder.com/Jobseeker/Jobs/JobResults.aspx?IPath=QH&ch=&rs=&s_rawwords={{{s}}}&s_jobtypes=ALL&s_freshness=30&s_education=DRNS&s_freeloc=&qsbButton=Find+Jobs+%3E%3E",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "crates.io",
|
|
r: 855,
|
|
s: "Cargo",
|
|
sc: "Languages (other)",
|
|
t: "cargo",
|
|
u: "https://crates.io/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "carjam.co.nz",
|
|
r: 8,
|
|
s: "CarJam",
|
|
sc: "Tools",
|
|
t: "carjam",
|
|
u: "https://carjam.co.nz/car/?plate={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.carmagazine.co.uk",
|
|
r: 0,
|
|
s: "CarMagazine.co.uk",
|
|
sc: "Blogs (intl)",
|
|
t: "carmag",
|
|
u: "http://www.carmagazine.co.uk/GLOBAL/Search-Results/?N=0&Ntx=mode%20matchallpartial&Ntk=site&Ntt={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.carmax.com",
|
|
r: 0,
|
|
s: "CarMax",
|
|
sc: "Online",
|
|
t: "carmax",
|
|
u: "https://www.carmax.com/search#FreeText={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "carousell.com",
|
|
r: 0,
|
|
s: "carousell",
|
|
sc: "Online",
|
|
t: "carousell",
|
|
u: "https://carousell.com/search/products/?query={{{s}}} ",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "search.carrot2.org",
|
|
r: 0,
|
|
s: "Carrot2 Clustering Engine",
|
|
sc: "Search",
|
|
t: "carrot",
|
|
u: "http://search.carrot2.org/stable/search?source=web&view=folders&skin=fancy-compact&query={{{s}}}&results=100&algorithm=lingo",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.carsales.com.au",
|
|
r: 0,
|
|
s: "Carsales",
|
|
sc: "Online (marketplace)",
|
|
t: "carsales",
|
|
u: "https://www.carsales.com.au/cars/results/?q=CarAll.keyword({{{s}}}).&area=Stock&vertical=car&WT.z_srchsrcx=makemodel",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.cartoonnetwork.com",
|
|
r: 0,
|
|
s: "Cartoon Network",
|
|
sc: "General",
|
|
t: "cartoonnetwork",
|
|
u: "http://www.cartoonnetwork.com/search/index.html?keywords={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "stadt-bremerhaven.de",
|
|
r: 0,
|
|
s: "Caschys Blog",
|
|
sc: "Specialty",
|
|
t: "caschy",
|
|
u: "http://stadt-bremerhaven.de/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.commonchemistry.org",
|
|
r: 4,
|
|
s: "Common Chemistry (CAS Registry Number)",
|
|
sc: "Academic",
|
|
t: "cas",
|
|
u: "http://www.commonchemistry.org/ChemicalDetail.aspx?ref={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "casetext.com",
|
|
r: 0,
|
|
s: "casetext",
|
|
sc: "Law",
|
|
t: "casetext",
|
|
u: "https://casetext.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.cashoverflow.in",
|
|
r: 0,
|
|
s: "CashOverflow",
|
|
sc: "Blogs",
|
|
t: "cashoverflow",
|
|
u: "http://www.cashoverflow.in/?s={{{s}}} ",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "castbox.fm",
|
|
r: 0,
|
|
s: "CastBox",
|
|
sc: "Audio",
|
|
t: "castbox",
|
|
u: "https://castbox.fm/podcasts/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.catalandictionary.org",
|
|
r: 0,
|
|
s: "CatalanDictionary.org",
|
|
sc: "Reference (words intl)",
|
|
t: "catalandictionary",
|
|
u: "http://www.catalandictionary.org/en/search/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.catawiki.be",
|
|
r: 0,
|
|
s: "Catawiki",
|
|
sc: "Online",
|
|
t: "catawikibe",
|
|
u: "https://www.catawiki.be/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.cathdb.info",
|
|
r: 0,
|
|
s: "CATH database",
|
|
sc: "Academic",
|
|
t: "cath",
|
|
u: "http://www.cathdb.info/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.catholic.com",
|
|
r: 0,
|
|
s: "Catholic Answers",
|
|
sc: "Reference (religion)",
|
|
t: "catholic",
|
|
u: "http://www.catholic.com/search/content/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.zieglers.com",
|
|
r: 0,
|
|
s: "Zieglers - Catholic Store",
|
|
sc: "Online",
|
|
t: "catholicstore",
|
|
u: "https://www.zieglers.com/search.php?search_query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "dlc.iec.cat",
|
|
r: 9,
|
|
s: "Institut d'Estudis Catalans",
|
|
sc: "Reference (words intl)",
|
|
t: "cat",
|
|
u: "https://dlc.iec.cat/results.asp?txtEntrada={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.computerbase.de",
|
|
r: 0,
|
|
s: "ComputerBase",
|
|
sc: "Blogs",
|
|
t: "cbase",
|
|
u: "http://www.computerbase.de/suche/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.sports-reference.com",
|
|
r: 5,
|
|
s: "College Basketball Reference",
|
|
sc: "Sports",
|
|
t: "cbbr",
|
|
u: "https://www.sports-reference.com/cbb/search/search.fcgi?hint=&search={{{s}}}&pid=&idx=",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.cbc.ca",
|
|
r: 4,
|
|
s: "CBC News",
|
|
sc: "Broadcast",
|
|
t: "cbc",
|
|
u: "https://www.cbc.ca/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.crunchbase.com",
|
|
r: 30,
|
|
s: "CrunchBase",
|
|
sc: "Tools",
|
|
t: "cb",
|
|
u: "https://www.crunchbase.com/textsearch?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "cbdb.cz",
|
|
r: 0,
|
|
s: "\u010ceskoslovensk\u00e1 bibliografick\u00e1 datab\u00e1ze",
|
|
sc: "Books",
|
|
t: "cbdbcz",
|
|
u: "https://cbdb.cz/hledat?text={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.christianbook.com",
|
|
r: 0,
|
|
s: "Christianbook.com",
|
|
sc: "Online",
|
|
t: "cbd",
|
|
u: "http://www.christianbook.com/Christian/Books/easy_find?Ntt={{{s}}}&N=0&Ntk=keywords&action=Search&Ne=0",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "cbd-oil-canada.ca",
|
|
r: 0,
|
|
s: "CBD Oil Canada",
|
|
sc: "Online",
|
|
t: "cbdoil",
|
|
u: "https://cbd-oil-canada.ca/?s=/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "carminbook.com",
|
|
r: 0,
|
|
s: "Carminbook",
|
|
sc: "Blogs",
|
|
t: "cbk",
|
|
u: "http://carminbook.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.coolblue.nl",
|
|
r: 0,
|
|
s: "Coolblue",
|
|
sc: "Tech",
|
|
t: "cblue",
|
|
u: "https://www.coolblue.nl/zoeken?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www1.cbn.com",
|
|
r: 0,
|
|
s: "Christian Broadcasting Network",
|
|
sc: "TV",
|
|
t: "cbn",
|
|
u: "http://www1.cbn.com/cbn-search?search_term={{{s}}}&site=default_collection",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "codebottle.io",
|
|
r: 0,
|
|
s: "Codebottle",
|
|
sc: "Programming",
|
|
t: "cbottle",
|
|
u: "https://codebottle.io/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "comicbookroundup.com",
|
|
r: 0,
|
|
s: "Comic Book Roundup",
|
|
sc: "Comics",
|
|
t: "cbr",
|
|
u: "http://comicbookroundup.com/search_results.php?f_search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.cbs.nl",
|
|
r: 0,
|
|
s: "Artikelen van het CBS",
|
|
sc: "Search",
|
|
t: "cbs",
|
|
u: "https://www.cbs.nl/nl-nl/zoeken/?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.cbservicedetersivi.it",
|
|
r: 0,
|
|
s: "CB Service",
|
|
sc: "Online",
|
|
t: "cbservice",
|
|
u: "http://www.cbservicedetersivi.it/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "search.cbsnews.com",
|
|
r: 0,
|
|
s: "CBSNews",
|
|
sc: "Broadcast",
|
|
t: "cbsnews",
|
|
u: "http://search.cbsnews.com/?source=cbs&q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.sportsline.com",
|
|
r: 0,
|
|
s: "CBS Sports",
|
|
sc: "Sports",
|
|
t: "cbssports",
|
|
u: "http://www.sportsline.com/info/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.cbtnuggets.com",
|
|
r: 0,
|
|
s: "CBT Nuggets",
|
|
sc: "Learning",
|
|
t: "cbtnuggets",
|
|
u: "https://www.cbtnuggets.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "combineoverwiki.net",
|
|
r: 0,
|
|
s: "Combine OverWiki",
|
|
sc: "Games (specific)",
|
|
t: "cbwiki",
|
|
u: "http://combineoverwiki.net/index.php?search={{{s}}}&title=Special%3ASearch&go=Go",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "choualbox.com",
|
|
r: 0,
|
|
s: "Choualbox",
|
|
sc: "Blogs",
|
|
t: "cbx",
|
|
u: "http://choualbox.com/recherche?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "coinmarketcap.com",
|
|
r: 0,
|
|
s: "CoinMarketCap",
|
|
sc: "Startups",
|
|
t: "ccap",
|
|
u: "https://coinmarketcap.com/currencies/search/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.climbbybike.com",
|
|
r: 0,
|
|
s: "Climbbybike.com",
|
|
sc: "Sports",
|
|
t: "ccb",
|
|
u: "https://www.climbbybike.com/climbs_selection.asp?Mountainname={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "ca.camelcamelcamel.com",
|
|
r: 4,
|
|
s: "CamelCamelCamel (Canada)",
|
|
sc: "Online",
|
|
t: "cccca",
|
|
u: "https://ca.camelcamelcamel.com/search?sq={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "camelcamelcamel.com",
|
|
r: 242,
|
|
s: "CamelCamelCamel",
|
|
sc: "Online",
|
|
t: "ccc",
|
|
u: "http://camelcamelcamel.com/search?sq={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "ccc.scborromeo.org.master.com",
|
|
r: 0,
|
|
s: "Catechism of the Catholic Church",
|
|
sc: "Reference (religion)",
|
|
t: "cccc",
|
|
u: "http://ccc.scborromeo.org.master.com/texis/master/search/?sufs=0&q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "de.camelcamelcamel.com",
|
|
r: 0,
|
|
s: "CamelCamelCamel (Germany)",
|
|
sc: "Services",
|
|
t: "cccde",
|
|
u: "https://de.camelcamelcamel.com/search?sq={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "search.creativecommons.org",
|
|
r: 12,
|
|
s: "CreativeCommons.org",
|
|
sc: "Search",
|
|
t: "cc",
|
|
u: "https://search.creativecommons.org/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "uk.camelcamelcamel.com",
|
|
r: 7,
|
|
s: "Camelcamelcamel",
|
|
sc: "Online",
|
|
t: "cccuk",
|
|
u: "http://uk.camelcamelcamel.com/search?sq={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "hamster.foxhollow.ca",
|
|
r: 0,
|
|
s: "FoxHollow CCD",
|
|
sc: "Reference",
|
|
t: "ccd",
|
|
u: "http://hamster.foxhollow.ca/ccd/index.php?keywords={{{s}}} ",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.ccel.org",
|
|
r: 0,
|
|
s: "Christian Classics Ethereal Library",
|
|
sc: "Reference (religion)",
|
|
t: "ccel",
|
|
u: "http://www.ccel.org/search/fulltext/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.christcenteredgamer.com",
|
|
r: 0,
|
|
s: "Christ Centered Gamer Forums",
|
|
sc: "Blogs",
|
|
t: "ccgrforum",
|
|
u: "https://www.christcenteredgamer.com/phpBB3/search.php?keywords={{{s}}}&submit=Search",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.christcenteredgamer.com",
|
|
r: 0,
|
|
s: "Christ Centered Gamer Reviews",
|
|
sc: "Blogs",
|
|
t: "ccgrreviews",
|
|
u: "https://www.christcenteredgamer.com/index.php/component/search/?searchword={{{s}}}&ordering=newest&searchphrase=all&areas[0]=blogs",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.codecheck.info",
|
|
r: 0,
|
|
s: "Codecheck",
|
|
sc: "Health",
|
|
t: "ccheck",
|
|
u: "https://www.codecheck.info/product.search?q={{{s}}}&OK=Suchen",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "cinemaclock.com",
|
|
r: 0,
|
|
s: "cinemaclock",
|
|
sc: "Movies",
|
|
t: "cck",
|
|
u: "http://cinemaclock.com/search?r=bri&m=Vancouver&key={{{s}}} ",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.cclonline.com",
|
|
r: 0,
|
|
s: "CCL",
|
|
sc: "Tech",
|
|
t: "ccl",
|
|
u: "http://www.cclonline.com/search/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "colorcodedlyrics.com",
|
|
r: 14,
|
|
s: "Color Coded Lyrics",
|
|
sc: "Music (Lyrics)",
|
|
t: "ccly",
|
|
u: "https://colorcodedlyrics.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "coinmarketcap.com",
|
|
r: 0,
|
|
s: "CryptoCurrency Market",
|
|
sc: "Business",
|
|
t: "ccm",
|
|
u: "https://coinmarketcap.com/currencies/search/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.cnet.com",
|
|
r: 165,
|
|
s: "CNET",
|
|
sc: "Downloads",
|
|
t: "cnet",
|
|
u: "http://www.cnet.com/1770-5_1-0.html?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.cheapies.nz",
|
|
r: 0,
|
|
s: "Cheapies NZ",
|
|
sc: "Online (deals)",
|
|
t: "ccnz",
|
|
u: "https://www.cheapies.nz/search/node/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.country-codes.org",
|
|
r: 0,
|
|
s: "Country calling codes",
|
|
sc: "Reference",
|
|
t: "ccode",
|
|
u: "http://www.country-codes.org/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "recherche.conseil-constitutionnel.fr",
|
|
r: 0,
|
|
s: "Conseil Constitutionnel",
|
|
sc: "Law",
|
|
t: "cconst",
|
|
u: "http://recherche.conseil-constitutionnel.fr/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.cybercook.com.br",
|
|
r: 0,
|
|
s: "CyberCook",
|
|
sc: "Food",
|
|
t: "ccook",
|
|
u: "http://www.cybercook.com.br/receitas/{{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "canadiancouchpotato.com",
|
|
r: 0,
|
|
s: "Canadian Couch Potato",
|
|
sc: "Specialty",
|
|
t: "ccp",
|
|
u: "http://canadiancouchpotato.com/?s={{{s}}}&submit=Search",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.coworking.coffee",
|
|
r: 0,
|
|
s: "Coworking & Coffee: search for place",
|
|
sc: "Maps",
|
|
t: "ccplace",
|
|
u: "https://www.coworking.coffee/places?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.cplusplus.com",
|
|
r: 0,
|
|
s: "cplusplus.com",
|
|
sc: "Languages (c++)",
|
|
t: "c++",
|
|
u: "http://www.cplusplus.com/search.do?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "ccr.chakralinux.org",
|
|
r: 0,
|
|
s: "Chakra Community Repository",
|
|
sc: "Sysadmin (packages)",
|
|
t: "ccr",
|
|
u: "https://ccr.chakralinux.org/packages.php?O=0&K={{{s}}}&do_Search=+Go+",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "ccsearch.creativecommons.org",
|
|
r: 8,
|
|
s: "Creative commons search",
|
|
sc: "Images",
|
|
t: "ccsearch",
|
|
u: "https://ccsearch.creativecommons.org/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "css-tricks.com",
|
|
r: 0,
|
|
s: "CSS Tricks",
|
|
sc: "Blogs",
|
|
t: "ccst",
|
|
u: "http://css-tricks.com/search-results/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.class-central.com",
|
|
r: 0,
|
|
s: "Class Central",
|
|
sc: "Tools",
|
|
t: "cctrl",
|
|
u: "https://www.class-central.com/search?q={{{s}}} ",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "so.cntv.cn",
|
|
r: 0,
|
|
s: "CCTV",
|
|
sc: "International",
|
|
t: "cctv",
|
|
u: "http://so.cntv.cn/language/english/?qtext={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "coincheckup.com",
|
|
r: 0,
|
|
s: "CoinCheckup",
|
|
sc: "Tools",
|
|
t: "ccu",
|
|
u: "https://coincheckup.com/coins/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "computercraft.info",
|
|
r: 0,
|
|
s: "ComputerCraft Wiki",
|
|
sc: "Games (Minecraft)",
|
|
t: "ccwiki",
|
|
u: "http://computercraft.info/wiki/index.php?title=Special%3ASearch&search={{{s}}}&go=Go",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "cda.chronomania.net",
|
|
r: 0,
|
|
s: "CDA",
|
|
sc: "Online (marketplace)",
|
|
t: "cda",
|
|
u: "http://cda.chronomania.net/search.php?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.cdandlp.com",
|
|
r: 0,
|
|
s: "cdandlp",
|
|
sc: "Online",
|
|
t: "cdandlp",
|
|
u: "http://www.cdandlp.com/en/search/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "chess-db.com",
|
|
r: 0,
|
|
s: "Chess-DB",
|
|
sc: "Search",
|
|
t: "cdb",
|
|
u: "https://chess-db.com/public/execute.jsp?name={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.cdc.gov",
|
|
r: 0,
|
|
s: "CDC",
|
|
sc: "Health",
|
|
t: "cdc",
|
|
u: "http://www.cdc.gov/search.do?queryText={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.collinsdictionary.com",
|
|
r: 118,
|
|
s: "Collins Dictionary",
|
|
sc: "Reference (words intl)",
|
|
t: "cd",
|
|
u: "http://www.collinsdictionary.com/dictionary/english/{{{s}}}?showCookiePolicy=true",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "cddawiki.chezzo.com",
|
|
r: 0,
|
|
s: "Cataclysm: Dark Days Ahead wiki",
|
|
sc: "Games (specific)",
|
|
t: "cdda",
|
|
u: "http://cddawiki.chezzo.com/cdda_wiki/index.php?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "cdda-trunk.chezzo.com",
|
|
r: 0,
|
|
s: "CDDA Item Browser",
|
|
sc: "Games (specific)",
|
|
t: "cddai",
|
|
u: "http://cdda-trunk.chezzo.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "cddawiki.chezzo.com",
|
|
r: 0,
|
|
s: "Cataclysm: Dark Days Ahead wiki",
|
|
sc: "Games (specific)",
|
|
t: "cddaw",
|
|
u: "http://cddawiki.chezzo.com/cdda_wiki/index.php?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "cheapdigitaldownload.com",
|
|
r: 0,
|
|
s: "CheapDigitalDownload",
|
|
sc: "Online (deals)",
|
|
t: "cdd",
|
|
u: "https://cheapdigitaldownload.com/catalog/search-{{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "lookup.computerlanguage.com",
|
|
r: 0,
|
|
s: "Computer Desktop Encyclopedia",
|
|
sc: "Academic (math/cs)",
|
|
t: "cde",
|
|
u: "http://lookup.computerlanguage.com/host_app/search?cid=C999999&term={{{s}}}&lookup.x=0&lookup.y=0",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.collinsdictionary.com",
|
|
r: 0,
|
|
s: "Collins Dictionary",
|
|
sc: "Search (Private)",
|
|
t: "cdeen",
|
|
u: "http://www.collinsdictionary.com/spellcheck/english-german?q={{{s}}} ",
|
|
},
|
|
{
|
|
c: "Translation",
|
|
d: "dictionary.cambridge.org",
|
|
r: 0,
|
|
s: "Cambridge Dictionary English-German",
|
|
sc: "General",
|
|
t: "cdende",
|
|
u: "https://dictionary.cambridge.org/dictionary/english-german/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Translation",
|
|
d: "dictionary.cambridge.org",
|
|
r: 0,
|
|
s: "Cambridge Dictionary English-Spanish",
|
|
sc: "General",
|
|
t: "cdenes",
|
|
u: "https://dictionary.cambridge.org/dictionary/english-spanish/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "dictionary.cambridge.org",
|
|
r: 0,
|
|
s: "Cambridge Dictionaries Online",
|
|
sc: "Learning",
|
|
t: "cdgdic",
|
|
u: "http://dictionary.cambridge.org/dictionary/learner-english/{{{s}}}_1?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "dictionary.cambridge.org",
|
|
r: 76,
|
|
s: "Cambridge Dictionary",
|
|
sc: "Reference (words)",
|
|
t: "cdic",
|
|
u: "https://dictionary.cambridge.org/spellcheck/english/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.dictionary.com",
|
|
r: 0,
|
|
s: "collinsdictionary",
|
|
sc: "Search",
|
|
t: "cdi",
|
|
u: "https://www.dictionary.com/browse/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "cdict.net",
|
|
r: 0,
|
|
s: "Chinese-English Dictionary/Calculator",
|
|
sc: "Learning",
|
|
t: "cdict",
|
|
u: "https://cdict.net/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.comdirect.de",
|
|
r: 0,
|
|
s: "comdirect",
|
|
sc: "Tools",
|
|
t: "cdirect",
|
|
u: "https://www.comdirect.de/inf/search/general.html?SEARCH_VALUE={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.cdiscount.com",
|
|
r: 11,
|
|
s: "Cdiscount",
|
|
sc: "Online",
|
|
t: "cdiscount",
|
|
u: "http://www.cdiscount.com/search/10/{{{s}}}.html",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "chronodivers.com",
|
|
r: 0,
|
|
s: "ChronoDiver.com",
|
|
sc: "Online (marketplace)",
|
|
t: "cdiver",
|
|
u: "https://chronodivers.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.cdjapan.co.jp",
|
|
r: 10,
|
|
s: "CDJapan",
|
|
sc: "Online",
|
|
t: "cdj",
|
|
u: "http://www.cdjapan.co.jp/products?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.cdkeys.com",
|
|
r: 21,
|
|
s: "CDKeys",
|
|
sc: "Online",
|
|
t: "cdkeys",
|
|
u: "https://www.cdkeys.com/catalogsearch/result/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.collinsdictionary.com",
|
|
r: 0,
|
|
s: "Collins Dictionaries (English for Learners)",
|
|
sc: "Reference (words intl)",
|
|
t: "cdl",
|
|
u: "http://www.collinsdictionary.com/dictionary/english-cobuild-learners/{{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.cdm.me",
|
|
r: 0,
|
|
s: "Cafe del Montenegro",
|
|
sc: "Newspaper",
|
|
t: "cdm",
|
|
u: "http://www.cdm.me/pretraga/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.cdnjs.com",
|
|
r: 0,
|
|
s: "Cdn js",
|
|
sc: "Libraries/Frameworks",
|
|
t: "cdn",
|
|
u: "http://www.cdnjs.com/#/search/{{{s}}} ",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.cdnplanet.com",
|
|
r: 0,
|
|
s: "CDNPlanet CDN Finder Tool",
|
|
sc: "Sysadmin",
|
|
t: "cdnfinder",
|
|
u: "http://www.cdnplanet.com/tools/cdnfinder/#host:{{{s}}} ",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "cdnjs.com",
|
|
r: 9,
|
|
s: "cdnjs",
|
|
sc: "Languages (javascript)",
|
|
t: "cdnjs",
|
|
u: "https://cdnjs.com/#q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "cdon.se",
|
|
r: 0,
|
|
s: "CDON",
|
|
sc: "Online",
|
|
t: "cdon",
|
|
u: "http://cdon.se/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "cdon.dk",
|
|
r: 0,
|
|
s: "CDON.com (Denmark/Danmark)",
|
|
sc: "Online",
|
|
t: "cdondk",
|
|
u: "http://cdon.dk/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "cdon.eu",
|
|
r: 0,
|
|
s: "CDON.com (Europe)",
|
|
sc: "Online",
|
|
t: "cdoneu",
|
|
u: "http://cdon.eu/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "cdon.fi",
|
|
r: 0,
|
|
s: "CDON.com (Finland/Suomi)",
|
|
sc: "Online",
|
|
t: "cdonfi",
|
|
u: "http://cdon.fi/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "cdon.no",
|
|
r: 0,
|
|
s: "CDON.com (Norway/Norge)",
|
|
sc: "Online",
|
|
t: "cdonno",
|
|
u: "http://cdon.no/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "cdon.se",
|
|
r: 0,
|
|
s: "CDON.com (Sweden/Sverige)",
|
|
sc: "Online",
|
|
t: "cdonse",
|
|
u: "http://cdon.se/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "currentlydown.com",
|
|
r: 0,
|
|
s: "Currently Down",
|
|
sc: "Tracking",
|
|
t: "cdown",
|
|
u: "http://currentlydown.com/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.cdp.net",
|
|
r: 0,
|
|
s: "CDP (Carbon Disclosure Project)",
|
|
sc: "Tools",
|
|
t: "cdp",
|
|
u: "https://www.cdp.net/en/responses?utf8=\u2713&queries[name]={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "cdsportal.u-strasbg.fr",
|
|
r: 0,
|
|
s: "CDS Portal",
|
|
sc: "Academic",
|
|
t: "cds",
|
|
u: "http://cdsportal.u-strasbg.fr/#{{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.collinsdictionary.com",
|
|
r: 0,
|
|
s: "Collins Thesaurus",
|
|
sc: "Reference (words)",
|
|
t: "cdt",
|
|
u: "https://www.collinsdictionary.com/dictionary/english-thesaurus/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.cduniverse.com",
|
|
r: 0,
|
|
s: "CDUniverse",
|
|
sc: "Online",
|
|
t: "cdu",
|
|
u: "http://www.cduniverse.com/sresult.asp?HT_Search_Info={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.cdw.ca",
|
|
r: 0,
|
|
s: "CDW.ca",
|
|
sc: "Tech (domains)",
|
|
t: "cdwca",
|
|
u: "https://www.cdw.ca/shop/search/result.aspx?key={{{s}}}}&wclsscat=&b=&p=&ctlgfilter=&searchscope=all&sr=1",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.cdw.com",
|
|
r: 11,
|
|
s: "CDW",
|
|
sc: "Online",
|
|
t: "cdw",
|
|
u: "http://www.cdw.com/shop/search/result.aspx?key={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.ebay.com",
|
|
r: 0,
|
|
s: "eBay: completed listings",
|
|
sc: "Online (marketplace)",
|
|
t: "ceb",
|
|
u: "https://www.ebay.com/csc/items/?_nkw={{{s}}}+&LH_Complete=1",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "forum.cheatengine.org",
|
|
r: 3,
|
|
s: "Cheat Engine Forums",
|
|
sc: "Downloads",
|
|
t: "ce",
|
|
u: "http://forum.cheatengine.org/search.php?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.cecmed.cu",
|
|
r: 0,
|
|
s: "CECMED",
|
|
sc: "Health",
|
|
t: "cecmed",
|
|
u: "https://www.cecmed.cu/search/node?keys={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.ceek.jp",
|
|
r: 0,
|
|
s: "ceek.jp",
|
|
sc: "Search",
|
|
t: "ceekjp",
|
|
u: "http://www.ceek.jp/search.cgi?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "celebrity.tn",
|
|
r: 0,
|
|
s: "Celebrity Magazine",
|
|
sc: "Magazine",
|
|
t: "celebrity",
|
|
u: "https://celebrity.tn/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "wikisceleb.com",
|
|
r: 0,
|
|
s: "Wikisceleb",
|
|
sc: "Blogs",
|
|
t: "celeb",
|
|
u: "https://wikisceleb.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.cellartracker.com",
|
|
r: 0,
|
|
s: "CellarTracker",
|
|
sc: "Forum",
|
|
t: "cellartracker",
|
|
u: "http://www.cellartracker.com/list.asp?fInStock=0&Table=List&iUserOverride=0&szSearch={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "celticmusicpodcast.com",
|
|
r: 0,
|
|
s: "Irish & Celtic Music Podcast",
|
|
sc: "Audio",
|
|
t: "celticpodcast",
|
|
u: "http://celticmusicpodcast.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.ceneje.si",
|
|
r: 0,
|
|
s: "Ceneje.si",
|
|
sc: "Online",
|
|
t: "ceneje",
|
|
u: "https://www.ceneje.si/Iskanje/Izdelki?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.ceneo.pl",
|
|
r: 71,
|
|
s: "Ceneo",
|
|
sc: "Services",
|
|
t: "ceneo",
|
|
u: "http://www.ceneo.pl/;szukaj-{{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.collinsdictionary.com",
|
|
r: 0,
|
|
s: "Collins Dictionary (English - Spanish)",
|
|
sc: "Reference (words)",
|
|
t: "cenes",
|
|
u: "https://www.collinsdictionary.com/dictionary/english-spanish/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.collinsdictionary.com",
|
|
r: 10,
|
|
s: "Collins French Dictionary (to French)",
|
|
sc: "Search",
|
|
t: "cenfr",
|
|
u: "http://www.collinsdictionary.com/dictionary/english-french/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.censys.io",
|
|
r: 0,
|
|
s: "Censys",
|
|
sc: "Sysadmin",
|
|
t: "censys",
|
|
u: "https://www.censys.io/ipv4?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.centredaily.com",
|
|
r: 0,
|
|
s: "Centre Daily Times",
|
|
sc: "Newspaper",
|
|
t: "centredailytimes",
|
|
u: "http://www.centredaily.com/search/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.consultarcep.com.br",
|
|
r: 0,
|
|
s: "Consultar CEP",
|
|
sc: "Tracking",
|
|
t: "cep",
|
|
u: "http://www.consultarcep.com.br/resultados.html?cx=partner-pub-6657933402951336%3A8478085485&cof=FORID%3A10&ie=UTF-8&q={{{s}}}&sa=%C2%A0",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.cerberusbyte.com",
|
|
r: 0,
|
|
s: "Cerberusbyte",
|
|
sc: "International",
|
|
t: "cerb",
|
|
u: "https://www.cerberusbyte.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "cercavino.com",
|
|
r: 0,
|
|
s: "CercaVino",
|
|
sc: "Online",
|
|
t: "cercavino",
|
|
u: "http://cercavino.com/cerca?vino={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "thesaurus.cerl.org",
|
|
r: 0,
|
|
s: "CERL Thesaurus",
|
|
sc: "Academic",
|
|
t: "cerl",
|
|
u: "http://thesaurus.cerl.org/cgi-bin/search.pl?type=l&type=i&type=p&type=c&query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "phonebook.cern.ch",
|
|
r: 3,
|
|
s: "CERN Phonebook",
|
|
sc: "Local",
|
|
t: "cern",
|
|
u: "https://phonebook.cern.ch/phonebook/#search/?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "maps.cern.ch",
|
|
r: 0,
|
|
s: "Cern map",
|
|
sc: "Maps",
|
|
t: "cernmap",
|
|
u: "https://maps.cern.ch/mapsearch/mapsearch.htm?n=[%27{{{s}}}%27]",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.biblegateway.com",
|
|
r: 0,
|
|
s: "BibleGateway: Contemporary English Version",
|
|
sc: "Reference (religion)",
|
|
t: "cev",
|
|
u: "https://www.biblegateway.com/quicksearch/?quicksearch={{{s}}}&qs_version=CEV",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "uk.webuy.com",
|
|
r: 38,
|
|
s: "CeX",
|
|
sc: "Online (deals)",
|
|
t: "cex",
|
|
u: "https://uk.webuy.com/search/index.php?stext={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.cfainstitute.org",
|
|
r: 0,
|
|
s: "CFA Institute",
|
|
sc: "Academic",
|
|
t: "cfa",
|
|
u: "https://www.cfainstitute.org/en/search#q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "store.channelfireball.com",
|
|
r: 0,
|
|
s: "Channel Fireball",
|
|
sc: "Online",
|
|
t: "cfb",
|
|
u: "http://store.channelfireball.com/products/search?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.sports-reference.com",
|
|
r: 0,
|
|
s: "College Football Reference",
|
|
sc: "Sports",
|
|
t: "cfbr",
|
|
u: "http://www.sports-reference.com/cfb/search/search.fcgi?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "cfdocs.org",
|
|
r: 14,
|
|
s: "Cold Fusion Docs",
|
|
sc: "Languages (coldfusion)",
|
|
t: "cfd",
|
|
u: "https://cfdocs.org/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.codingforentrepreneurs.com",
|
|
r: 0,
|
|
s: "Coding For Entrepreneurs",
|
|
sc: "Startups",
|
|
t: "cfe",
|
|
u: "https://www.codingforentrepreneurs.com/search/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "docs.aws.amazon.com",
|
|
r: 15,
|
|
s: "AWS CloudFormation Documentation",
|
|
sc: "Programming",
|
|
t: "cfn",
|
|
u: "http://docs.aws.amazon.com/search/doc-search.html?searchPath=documentation-guide&searchQuery={{{s}}}&this_doc_product=AWS+CloudFormation&this_doc_guide=User+Guide&doc_locale=en_us#facet_doc_product=AWS%20CloudFormation&facet_doc_guide=User%20Guide",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "forum.curvefever.pro",
|
|
r: 0,
|
|
s: "Curve Fever Pro Forum",
|
|
sc: "Games (general)",
|
|
t: "cfpforum",
|
|
u: "https://forum.curvefever.pro/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "wikicfp.com",
|
|
r: 0,
|
|
s: "WikiCFP",
|
|
sc: "Reference",
|
|
t: "cfp",
|
|
u: "http://wikicfp.com/cfp/servlet/tool.search?q={{{s}}}&year=f",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.collinsdictionary.com",
|
|
r: 14,
|
|
s: "Collins French Dictionary (to English)",
|
|
sc: "Search",
|
|
t: "cfren",
|
|
u: "http://www.collinsdictionary.com/dictionary/french-english/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.ecfr.gov",
|
|
r: 0,
|
|
s: "http://www.ecfr.gov/cgi-bin/ECFR",
|
|
sc: "Law",
|
|
t: "cfr",
|
|
u: "http://www.ecfr.gov/cgi-bin/searchECFR?q1={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "hub.culturegraph.org",
|
|
r: 4,
|
|
s: "CultureGraph",
|
|
sc: "Academic",
|
|
t: "cg",
|
|
u: "http://hub.culturegraph.org/search?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "champion.gg",
|
|
r: 0,
|
|
s: "Champion.gg",
|
|
sc: "Games (specific)",
|
|
t: "cgg",
|
|
u: "http://champion.gg/champion/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "pittsburgh.craigslist.org",
|
|
r: 0,
|
|
s: "craigslist",
|
|
sc: "Online (marketplace)",
|
|
t: "cgl",
|
|
u: "https://pittsburgh.craigslist.org/search/sss?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "catalog.gpo.gov",
|
|
r: 0,
|
|
s: "Catalog of Government Publications",
|
|
sc: "Government",
|
|
t: "cgp",
|
|
u: "http://catalog.gpo.gov/F?func=find-b&find_code=WRD&request={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.cgtrader.com",
|
|
r: 0,
|
|
s: "cgtrader",
|
|
sc: "Design",
|
|
t: "cgt",
|
|
u: "https://www.cgtrader.com/3d-models?keywords={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "resources.allsetlearning.com",
|
|
r: 0,
|
|
s: "Chinese Grammar Wiki",
|
|
sc: "Learning",
|
|
t: "cgw",
|
|
u: "https://resources.allsetlearning.com/gramwiki/?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.chabad.org",
|
|
r: 0,
|
|
s: "Chabad.org",
|
|
sc: "Reference (religion)",
|
|
t: "chabad",
|
|
u: "http://www.chabad.org/search/results.asp?searchWord={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.chairish.com",
|
|
r: 0,
|
|
s: "Chairish",
|
|
sc: "Online (marketplace)",
|
|
t: "chairish",
|
|
u: "https://www.chairish.com/search?q={{{s}}} ",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "chakraos.org",
|
|
r: 0,
|
|
s: "The Chakra Project",
|
|
sc: "Chakra",
|
|
t: "chakraforum",
|
|
u: "http://chakraos.org/forum/search.php?action=search&keywords={{{s}}}&author=&search_in=0&sort_by=0&sort_dir=DESC&show_as=topics&search=Submit",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.chakraos.org",
|
|
r: 0,
|
|
s: "The Chakra Project Packages",
|
|
sc: "Libraries/Frameworks",
|
|
t: "chakrapkg",
|
|
u: "http://www.chakraos.org/packages/index.php?act=search&subdir=&sortby=date&order=descending&searchpattern={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "chakraos.org",
|
|
r: 0,
|
|
s: "Chakra Wiki",
|
|
sc: "Chakra",
|
|
t: "chakrawiki",
|
|
u: "http://chakraos.org/wiki/index.php?search={{{s}}}&go=Go",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "chambers.co.uk",
|
|
r: 7,
|
|
s: "Chambers",
|
|
sc: "Reference (words)",
|
|
t: "chambers",
|
|
u: "http://chambers.co.uk/search.php?query={{{s}}}&title=21st",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "championrunner.com",
|
|
r: 0,
|
|
s: "Champion runner",
|
|
sc: "Online",
|
|
t: "champion",
|
|
u: "https://championrunner.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "champion.gg",
|
|
r: 0,
|
|
s: "Champion.gg",
|
|
sc: "Games (specific)",
|
|
t: "championgg",
|
|
u: "http://champion.gg/champion/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.champssports.com",
|
|
r: 0,
|
|
s: "Champs Sports",
|
|
sc: "Online",
|
|
t: "champssports",
|
|
u: "http://www.champssports.com/_-_/keyword-{{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.change.org",
|
|
r: 4,
|
|
s: "https://www.change.org",
|
|
sc: "Social",
|
|
t: "change",
|
|
u: "https://www.change.org/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.channel4.com",
|
|
r: 0,
|
|
s: "Channel 4",
|
|
sc: "Online",
|
|
t: "channel4",
|
|
u: "http://www.channel4.com/search/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.channel5.com",
|
|
r: 0,
|
|
s: "Channel 5",
|
|
sc: "Online",
|
|
t: "channel5",
|
|
u: "http://www.channel5.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.reddit.com",
|
|
r: 0,
|
|
s: "r/ChapoTrapHouse",
|
|
sc: "Forum",
|
|
t: "chapo",
|
|
u: "https://www.reddit.com/r/ChapoTrapHouse/search?q={{{s}}}&restrict_sr=1",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "postavy.akihabara.cz",
|
|
r: 0,
|
|
s: "Characters Akihabara",
|
|
sc: "Forum",
|
|
t: "charbara",
|
|
u: "http://postavy.akihabara.cz/vyhledavani/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "charcod.es",
|
|
r: 7,
|
|
s: "charcode.es",
|
|
sc: "Languages (other)",
|
|
t: "char",
|
|
u: "http://charcod.es/#{{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "initialcharge.net",
|
|
r: 0,
|
|
s: "Initial Charge",
|
|
sc: "Blogs",
|
|
t: "charge",
|
|
u: "http://initialcharge.net/?s={{{s}}} ",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.charitynavigator.org",
|
|
r: 0,
|
|
s: "Charity Navigator",
|
|
sc: "Reference",
|
|
t: "charity",
|
|
u: "http://www.charitynavigator.org/index.cfm?bay=search.results&keyword_list={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.charitynavigator.org",
|
|
r: 0,
|
|
s: "Charity Navigator",
|
|
sc: "Reference",
|
|
t: "charitynavigator",
|
|
u: "http://www.charitynavigator.org/index.cfm?bay=search.results&keyword_list={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.charlotteslaw.nl",
|
|
r: 0,
|
|
s: "Charlotte's Law & Fine Prints",
|
|
sc: "Law",
|
|
t: "charlotteslaw",
|
|
u: "https://www.charlotteslaw.nl/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "charmed.wikia.com",
|
|
r: 0,
|
|
s: "The Charmed Wikia",
|
|
sc: "TV",
|
|
t: "charmed",
|
|
u: "http://charmed.wikia.com/wiki/Special:Search?search={{{s}}} ",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "hub.helm.sh",
|
|
r: 0,
|
|
s: "Helm Charts",
|
|
sc: "Sysadmin (packages)",
|
|
t: "chart",
|
|
u: "https://hub.helm.sh/charts?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.duckduckgo.com",
|
|
r: 3580,
|
|
s: "Duck.ai",
|
|
sc: "Reference",
|
|
t: "chat",
|
|
u: "https://www.duckduckgo.com/?q={{{s}}}&ia=chat&bang=true ",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "chatters.ca",
|
|
r: 0,
|
|
s: "Chatters Salons",
|
|
sc: "Online",
|
|
t: "chatters",
|
|
u: "https://chatters.ca/catalogsearch/result/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "chequeado.com",
|
|
r: 7,
|
|
s: "Chequeado",
|
|
sc: "Government",
|
|
t: "ch",
|
|
u: "http://chequeado.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "camphikedrive.blogspot.com.au",
|
|
r: 0,
|
|
s: "CampHikeDrive",
|
|
sc: "Blogs",
|
|
t: "chd",
|
|
u: "http://camphikedrive.blogspot.com.au/search?q={{{s}}}&m=1",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.cheapassgamer.com",
|
|
r: 0,
|
|
s: "Cheap Ass Gamer",
|
|
sc: "Games (general)",
|
|
t: "cheapassgamer",
|
|
u: "http://www.cheapassgamer.com/query.php?keywords={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.cheatcc.com",
|
|
r: 0,
|
|
s: "CheatCC.com",
|
|
sc: "Games (general)",
|
|
t: "cheatcc",
|
|
u: "http://www.cheatcc.com/search_results.html?sitesearch=CheatCC.com&domains=CheatCC.com&q={{{s}}}&sa=Google+Search&client=pub-7081624040320322&forid=1&ie=UTF8&oe=UTF8&cof=GALT%3A%23008000%3BGL%3A1%3BDIV%3A%230000FF%3BVLC%3A663399%3BAH%3Acenter%3BBGC%3AFFFFFF%3BLBGC%3AFFFFFF%3BALC%3A0000FF%3BLC%3A0000FF%3BT%3A000000%3BGFNT%3A0000FF%3BGIMP%3A0000FF%3BLH%3A0%3BLW%3A0%3BL%3Ahttp%3A%2F%2Fwww.cheatcc.com%2Fccclink.gif%3BS%3Ahttp%3A%2F%2Fwww.cheatcc.com%2Findex2.html%3BFORID%3A11",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.cheatcc.com",
|
|
r: 0,
|
|
s: "CheatCC",
|
|
sc: "Games (general)",
|
|
t: "cheatcodes",
|
|
u: "http://www.cheatcc.com/search_results.html?sitesearch=CheatCC.com&domains=CheatCC.com&q={{{s}}}&sa=Google+Search&client=pub-7081624040320322&forid=1&ie=UTF8&oe=UTF8&cof=GALT%3A%23008000%3BGL%3A1%3BDIV%3A%230000FF%3BVLC%3A663399%3BAH%3Acenter%3BBGC%3AFFFFFF%3BLBGC%3AFFFFFF%3BALC%3A0000FF%3BLC%3A0000FF%3BT%3A000000%3BGFNT%3A0000FF%3BGIMP%3A0000FF%3BLH%3A0%3BLW%3A0%3BL%3Ahttp%3A%2F%2Fwww.cheatcc.com%2Fccclink.gif%3BS%3Ahttp%3A%2F%2Fwww.cheatcc.com%2Findex2.html%3BFORID%3A11",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "devhints.io",
|
|
r: 9,
|
|
s: "https://devhints.io/",
|
|
sc: "Programming",
|
|
t: "cheat",
|
|
u: "https://devhints.io/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.cheatography.com",
|
|
r: 3,
|
|
s: "Cheatography",
|
|
sc: "Reference",
|
|
t: "cheatography",
|
|
u: "http://www.cheatography.com/explore/search/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "chrome.google.com",
|
|
r: 17,
|
|
s: "Chrome Web Store Extensions",
|
|
sc: "Google",
|
|
t: "che",
|
|
u: "https://chrome.google.com/webstore/search/{{{s}}}?_category=extensions",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "preisvergleich.check24.de",
|
|
r: 0,
|
|
s: "Check24 Preisvergleich",
|
|
sc: "Online",
|
|
t: "check24",
|
|
u: "https://preisvergleich.check24.de/suche.html?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "check-host.net",
|
|
r: 39,
|
|
s: "Check-host.net",
|
|
sc: "Tools",
|
|
t: "checkhost",
|
|
u: "https://check-host.net/ip-info?host={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "cheddar.com",
|
|
r: 0,
|
|
s: "Cheddar",
|
|
sc: "Online",
|
|
t: "cheddar",
|
|
u: "https://cheddar.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.cheese.com",
|
|
r: 0,
|
|
s: "Cheese",
|
|
sc: "Food",
|
|
t: "cheese",
|
|
u: "http://www.cheese.com/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "search.cheezburger.com",
|
|
r: 0,
|
|
s: "Cheezburger",
|
|
sc: "General",
|
|
t: "cheezburger",
|
|
u: "http://search.cheezburger.com/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.chefkoch.de",
|
|
r: 12,
|
|
s: "Chefkoch",
|
|
sc: "Search",
|
|
t: "chef",
|
|
u: "http://www.chefkoch.de/rs/s0/{{{s}}}/Rezepte.html",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "docs.chef.io",
|
|
r: 0,
|
|
s: "Chef Docs",
|
|
sc: "Companies",
|
|
t: "chefdoc",
|
|
u: "https://docs.chef.io/search.html#stq={{{s}}}&stp=1",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "docs.chef.io",
|
|
r: 0,
|
|
s: "Chef Docs",
|
|
sc: "Languages (ruby)",
|
|
t: "chefio",
|
|
u: "https://docs.chef.io/search.html#stq={{{s}}}&stp=1",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.chefkoch.de",
|
|
r: 35,
|
|
s: "chefkoch.de",
|
|
sc: "Misc",
|
|
t: "chefkoch",
|
|
u: "https://www.chefkoch.de/suche.php?wo=2&suche={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.chefkoch.de",
|
|
r: 0,
|
|
s: "Chefkoch.de Vegan",
|
|
sc: "Food",
|
|
t: "chefkochvegan",
|
|
u: "http://www.chefkoch.de/rs/s0t57/{{{s}}}/Vegan-Rezepte.html",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.chegg.com",
|
|
r: 0,
|
|
s: "Chegg",
|
|
sc: "Online",
|
|
t: "chegg",
|
|
u: "http://www.chegg.com/search/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.chemicalize.org",
|
|
r: 0,
|
|
s: "http://www.chemicalize.org/",
|
|
sc: "Reference (science)",
|
|
t: "chemicalize",
|
|
u: "http://www.chemicalize.org/structure/#!mol={{{s}}}&source=fp",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.chemie.de",
|
|
r: 0,
|
|
s: "Chemie.de",
|
|
sc: "Academic (math/cs)",
|
|
t: "chemie.de",
|
|
u: "http://www.chemie.de/search/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "chemistry.stackexchange.com",
|
|
r: 0,
|
|
s: "Chemistry StackExchange",
|
|
sc: "Academic",
|
|
t: "chemse",
|
|
u: "http://chemistry.stackexchange.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.chemspider.com",
|
|
r: 0,
|
|
s: "ChemSpider",
|
|
sc: "Reference (science)",
|
|
t: "chemspider",
|
|
u: "http://www.chemspider.com/Search.aspx?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "chemwiki.ucdavis.edu",
|
|
r: 0,
|
|
s: "Chemwiki",
|
|
sc: "Reference (science)",
|
|
t: "chemwiki",
|
|
u: "http://chemwiki.ucdavis.edu/Special:Search?search={{{s}}}&qid=&fpid=1285&fpth=",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.chess.com",
|
|
r: 55,
|
|
s: "Chess.com",
|
|
sc: "Games (specific)",
|
|
t: "chess",
|
|
u: "https://www.chess.com/topic/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.chessgames.com",
|
|
r: 0,
|
|
s: "Chess Games",
|
|
sc: "Games (specific)",
|
|
t: "chessgames",
|
|
u: "http://www.chessgames.com/perl/ezsearch.pl?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.chewy.com",
|
|
r: 7,
|
|
s: "chewy.com",
|
|
sc: "Online",
|
|
t: "chewy",
|
|
u: "http://www.chewy.com/s?dept=all&query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "champion.gg",
|
|
r: 0,
|
|
s: "Champion.gg",
|
|
sc: "Games (specific)",
|
|
t: "chgg",
|
|
u: "http://champion.gg/champion/{{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.chicagotribune.com",
|
|
r: 0,
|
|
s: "The Chicago Tribune",
|
|
sc: "Newspaper",
|
|
t: "chicagotribune",
|
|
u: "http://www.chicagotribune.com/search/dispatcher.front?Query={{{s}}}&sortby=display_time+descending&subheader-search-button=Go&target=article",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.chichester.gov.uk",
|
|
r: 0,
|
|
s: "Chichester District Council",
|
|
sc: "Government",
|
|
t: "chichester",
|
|
u: "http://www.chichester.gov.uk/article/23353/Search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "wiki.call-cc.org",
|
|
r: 0,
|
|
s: "Chicken Scheme",
|
|
sc: "Languages (scheme)",
|
|
t: "chicken",
|
|
u: "https://wiki.call-cc.org/search?text={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.chiefdelphi.com",
|
|
r: 6,
|
|
s: "Chief Delphi",
|
|
sc: "Learning",
|
|
t: "chief",
|
|
u: "https://www.chiefdelphi.com/search?expanded=true&q={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.chilango.com",
|
|
r: 0,
|
|
s: "Chilango",
|
|
sc: "International",
|
|
t: "chilango",
|
|
u: "https://www.chilango.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.chillingeffects.org",
|
|
r: 0,
|
|
s: "Chilling Effects",
|
|
sc: "Reference",
|
|
t: "chillingeffects",
|
|
u: "https://www.chillingeffects.org/notices/search?&term={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.chimerarevo.com",
|
|
r: 0,
|
|
s: "Chimera Revo",
|
|
sc: "Blogs (intl)",
|
|
t: "chimerarevo",
|
|
u: "http://www.chimerarevo.com/search/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "ucblibraries.summon.serialssolutions.com",
|
|
r: 0,
|
|
s: "University of Colorado Libraries Catalog",
|
|
sc: "Academic",
|
|
t: "chinook",
|
|
u: "http://ucblibraries.summon.serialssolutions.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "suche.chip.de",
|
|
r: 0,
|
|
s: "CHIP Online",
|
|
sc: "General",
|
|
t: "chip",
|
|
u: "http://suche.chip.de/?q={{{s}}}&it=1&submit.x=0&submit.y=0",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.msarnoff.org",
|
|
r: 0,
|
|
s: "msarnoff.org ChipDB",
|
|
sc: "Reference",
|
|
t: "chipdb",
|
|
u: "http://www.msarnoff.org/chipdb/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.chipoteka.hr",
|
|
r: 0,
|
|
s: "Chipoteka",
|
|
sc: "Tech",
|
|
t: "chipoteka",
|
|
u: "https://www.chipoteka.hr/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "churchhistorycatalog.lds.org",
|
|
r: 0,
|
|
s: "Church History Library",
|
|
sc: "Academic",
|
|
t: "chl",
|
|
u: "http://churchhistorycatalog.lds.org/primo_library/libweb/action/search.do?fn=search&ct=search&initialSearch=true&mode=Basic&tab=chl&indx=1&dum=true&srt=rank&vid=CHL_PUBLIC&frbg=&tb=t&vl%28freeText0%29={{{s}}}&scp.scps=scope%3A%28PEAD%29%2Cscope%3A%28PARCHIVES%29%2Cscope%3A%28PLIBRARY%29%2Cscope%3A%28ALEPH-PCPX%29%2Cscope%3A%28ALEPH-JHX%29%2Cscope%3A%28ALEPH-CAX%29&vl%2830857204UI1%29=all_items&vl%281UIStartWith0%29=contains&vl%2830857210UI0%29=any&vl%2830857210UI0%29=title&vl%2830857210UI0%29=any",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "chalmers.summon.serialssolutions.com",
|
|
r: 0,
|
|
s: "Chalmers Library",
|
|
sc: "Academic",
|
|
t: "chlib",
|
|
u: "http://chalmers.summon.serialssolutions.com/en/search?ho=t&q={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.lachainemeteo.com",
|
|
r: 0,
|
|
s: "La chaine m\u00e9t\u00e9o",
|
|
sc: "Weather",
|
|
t: "chm",
|
|
u: "https://www.lachainemeteo.com/synthese-previsions-meteo-{{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "chmodcommand.com",
|
|
r: 0,
|
|
s: "Chmod Calculator",
|
|
sc: "Programming",
|
|
t: "chmod",
|
|
u: "https://chmodcommand.com/chmod-{{{s}}}/",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "chocolatecoveredkatie.com",
|
|
r: 0,
|
|
s: "Chocolate Covered Katie",
|
|
sc: "Blogs",
|
|
t: "choc",
|
|
u: "https://chocolatecoveredkatie.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "chocolatey.org",
|
|
r: 264,
|
|
s: "Chocolatey",
|
|
sc: "Downloads (software)",
|
|
t: "choco",
|
|
u: "https://chocolatey.org/packages?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "chocolatey.org",
|
|
r: 0,
|
|
s: "Chocolatey",
|
|
sc: "Downloads (apps)",
|
|
t: "chocolatey",
|
|
u: "http://chocolatey.org/packages?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.choice.com.au",
|
|
r: 0,
|
|
s: "Choice",
|
|
sc: "Tools",
|
|
t: "choice",
|
|
u: "https://www.choice.com.au/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.chollometro.com",
|
|
r: 6,
|
|
s: "chollometro",
|
|
sc: "Online (deals)",
|
|
t: "chollo",
|
|
u: "https://www.chollometro.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.chordie.com",
|
|
r: 0,
|
|
s: "http://www.chordie.com/",
|
|
sc: "Music",
|
|
t: "chordie",
|
|
u: "http://www.chordie.com/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "chordify.net",
|
|
r: 0,
|
|
s: "Chordify",
|
|
sc: "Music",
|
|
t: "chordify",
|
|
u: "https://chordify.net/?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.ultimate-guitar.com",
|
|
r: 12,
|
|
s: "Ultimate Guitar",
|
|
sc: "Learning",
|
|
t: "chords",
|
|
u: "http://www.ultimate-guitar.com/search.php?search_type=title&value={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "ja.chordwiki.org",
|
|
r: 0,
|
|
s: "Chord Wiki",
|
|
sc: "Music",
|
|
t: "chordwiki",
|
|
u: "https://ja.chordwiki.org/search.html?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "nsearch.chosun.com",
|
|
r: 0,
|
|
s: "The Chosun Ilbo",
|
|
sc: "International",
|
|
t: "chosun",
|
|
u: "http://nsearch.chosun.com/search/total.search?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "choualbox.com",
|
|
r: 0,
|
|
s: "choualbox",
|
|
sc: "Aggregators",
|
|
t: "choualbox",
|
|
u: "https://choualbox.com/recherche?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "choualbox.com",
|
|
r: 0,
|
|
s: "Choualbox",
|
|
sc: "Events",
|
|
t: "choual",
|
|
u: "https://choualbox.com/recherche?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.chow.com",
|
|
r: 0,
|
|
s: "Chowhound",
|
|
sc: "Food",
|
|
t: "chow",
|
|
u: "http://www.chow.com/search?type=Topic&from_date=1+year+ago&query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.computerhope.com",
|
|
r: 0,
|
|
s: "Computer Hope",
|
|
sc: "Sysadmin",
|
|
t: "chp",
|
|
u: "https://www.computerhope.com/search2.htm?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "chrome.google.com",
|
|
r: 94,
|
|
s: "Chrome Web Store",
|
|
sc: "Downloads (add-ons)",
|
|
t: "chrome",
|
|
u: "https://chrome.google.com/webstore/search/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "chrome.google.com",
|
|
r: 0,
|
|
s: "Chrome Web Store",
|
|
sc: "Downloads (add-ons)",
|
|
t: "chromestore",
|
|
u: "https://chrome.google.com/webstore/search/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "chrome.google.com",
|
|
r: 14,
|
|
s: "Chrome Web Store",
|
|
sc: "Tools",
|
|
t: "chromewebstore",
|
|
u: "https://chrome.google.com/webstore/search/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.chronopost.fr",
|
|
r: 0,
|
|
s: "Chronopost France",
|
|
sc: "Tracking",
|
|
t: "chronopost",
|
|
u: "http://www.chronopost.fr/fr/chrono_suivi_search?lang=fr&listeNumerosLT={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "chain.so",
|
|
r: 0,
|
|
s: "https://chain.so/",
|
|
sc: "Cryptocurrency",
|
|
t: "chs",
|
|
u: "https://chain.so/address/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "cheat.sh",
|
|
r: 0,
|
|
s: "cheat.sh",
|
|
sc: "Sysadmin (man)",
|
|
t: "chtsh",
|
|
u: "https://cheat.sh/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "chuck-nbc.wikia.com",
|
|
r: 0,
|
|
s: "Chuck Wiki",
|
|
sc: "TV",
|
|
t: "chuck",
|
|
u: "http://chuck-nbc.wikia.com/wiki/Special:Search?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "beta.companieshouse.gov.uk",
|
|
r: 17,
|
|
s: "Companies House",
|
|
sc: "Search (non-US)",
|
|
t: "chuk",
|
|
u: "https://beta.companieshouse.gov.uk/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.churchclarity.org",
|
|
r: 0,
|
|
s: "Church Clarity",
|
|
sc: "Reference (religion)",
|
|
t: "churchclarity",
|
|
u: "https://www.churchclarity.org/search?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.churchofsatan.com",
|
|
r: 0,
|
|
s: "Church of Satan Official Site",
|
|
sc: "Specialty",
|
|
t: "churchofsatan",
|
|
u: "http://www.churchofsatan.com/search-results.php?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.cia.gov",
|
|
r: 3,
|
|
s: "CIA World Factbook",
|
|
sc: "Reference",
|
|
t: "cia",
|
|
u: "https://www.cia.gov/search?q={{{s}}}&site=WORLD_FACTBOOK&btnG=Search&x=0&y=0&output=xml_no_dtd&client=CIA&myAction=%2Fsearch&proxystylesheet=CIA&submitMethod=get&sort=date%3AD%3AL%3Ad1&oe=UTF-8&ie=UTF-8&ud=1&exclude_apps=1",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.ciao.de",
|
|
r: 0,
|
|
s: "Ciao.de",
|
|
sc: "Online",
|
|
t: "ciao",
|
|
u: "http://www.ciao.de/sr/q-{{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "web2.wipo.int",
|
|
r: 0,
|
|
s: "Classification Internationale des Brevets (2016)",
|
|
sc: "Law",
|
|
t: "cib",
|
|
u: "http://web2.wipo.int/classifications/ipc/ipcpub/#lang=fr&menulang=FR&refresh=page&fipcpc=yes&indexes=yes¬ion=scheme&version=20160101&symbol={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "ciberduvidas.iscte-iul.pt",
|
|
r: 0,
|
|
s: "Ciberd\u00favidas da L\u00edngua Portuguesa",
|
|
sc: "Reference (words intl)",
|
|
t: "ciberduvidas",
|
|
u: "https://ciberduvidas.iscte-iul.pt/pesquisa?termo={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.codeigniter.com",
|
|
r: 3,
|
|
s: "CodeIgniter",
|
|
sc: "Libraries/Frameworks",
|
|
t: "ci",
|
|
u: "https://www.codeigniter.com/user_guide/search.html?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "paper.sc",
|
|
r: 0,
|
|
s: "Paper.sc",
|
|
sc: "Academic",
|
|
t: "cie",
|
|
u: "https://paper.sc/search/?as=page&query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.cinemainfocus.com",
|
|
r: 0,
|
|
s: "Cinema In Focus",
|
|
sc: "Movies",
|
|
t: "cif",
|
|
u: "http://www.cinemainfocus.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.cifraclub.com.br",
|
|
r: 7,
|
|
s: "Cifra Club",
|
|
sc: "Music (Lyrics)",
|
|
t: "cifraclub",
|
|
u: "http://www.cifraclub.com.br/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "ciied.xyz",
|
|
r: 0,
|
|
s: "CIIED",
|
|
sc: "Business",
|
|
t: "ciied",
|
|
u: "http://ciied.xyz/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "cinemassacre.com",
|
|
r: 0,
|
|
s: "Cinemassacre",
|
|
sc: "Movies",
|
|
t: "cine",
|
|
u: "http://cinemassacre.com/?s={{{s}}}&search.x=0&search.y=0",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.cinemagay.it",
|
|
r: 0,
|
|
s: "CinemaGay",
|
|
sc: "Movies",
|
|
t: "cinemagay",
|
|
u: "http://www.cinemagay.it/ricerca.asp?tipo=0&campo={{{s}}}&Submit=Cerca",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.cineycortosgay.com",
|
|
r: 0,
|
|
s: "CineyCortosGay.com",
|
|
sc: "Video",
|
|
t: "cineycortosgay",
|
|
u: "http://www.cineycortosgay.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "chocolatey.org",
|
|
r: 6,
|
|
s: "Chocolatey",
|
|
sc: "Downloads (software)",
|
|
t: "cinst",
|
|
u: "http://chocolatey.org/packages?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.lirikcinta.com",
|
|
r: 0,
|
|
s: "Lirikcinta.com",
|
|
sc: "Music (Lyrics)",
|
|
t: "cinta",
|
|
u: "https://www.lirikcinta.com/result/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "company.info",
|
|
r: 0,
|
|
s: "Company.info",
|
|
sc: "Reference",
|
|
t: "cio",
|
|
u: "https://company.info/organisations/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.circuit-help.com.ph",
|
|
r: 0,
|
|
s: "Circuit-Help",
|
|
sc: "Online",
|
|
t: "circuit-help-ph",
|
|
u: "https://www.circuit-help.com.ph/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "racingcircuits.info",
|
|
r: 0,
|
|
s: "RacingCircuits.info",
|
|
sc: "Topical",
|
|
t: "circuit",
|
|
u: "http://racingcircuits.info/misc/search-results.html?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "search.cisco.com",
|
|
r: 0,
|
|
s: "Cisco",
|
|
sc: "Companies",
|
|
t: "cisco",
|
|
u: "https://search.cisco.com/search?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "cisne.sim.ucm.es",
|
|
r: 0,
|
|
s: "Cat\u00e1logo Cisne UCM",
|
|
sc: "Academic",
|
|
t: "cisne",
|
|
u: "http://cisne.sim.ucm.es/search*spi~S/X?SEARCH={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.citatum.hu",
|
|
r: 0,
|
|
s: "Citatum",
|
|
sc: "Misc",
|
|
t: "citatum",
|
|
u: "https://www.citatum.hu/kereso.php?kereses={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "citeseer.ist.psu.edu",
|
|
r: 0,
|
|
s: "CiteSeer",
|
|
sc: "Academic (math/cs)",
|
|
t: "citeseer",
|
|
u: "http://citeseer.ist.psu.edu/search?q={{{s}}}&submit=Search&sort=rlv&t=doc",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.citeulike.org",
|
|
r: 0,
|
|
s: "CikeULike",
|
|
sc: "Reference",
|
|
t: "citeul",
|
|
u: "http://www.citeulike.org/search/all?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "citizendium.org",
|
|
r: 3,
|
|
s: "Citizendium",
|
|
sc: "Learning",
|
|
t: "citi",
|
|
u: "http://citizendium.org/wiki?search={{{s}}}&title=Special%3ASearch&go=Go+To+Page",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.citizen.es",
|
|
r: 0,
|
|
s: "Citizen Espa\u00f1a",
|
|
sc: "Online",
|
|
t: "citizenes",
|
|
u: "http://www.citizen.es/search?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "citroenc3owners.com",
|
|
r: 0,
|
|
s: "citroenC3owners.com",
|
|
sc: "Reference",
|
|
t: "citroenc3owners",
|
|
u: "http://citroenc3owners.com/search.php?keywords={{{s}}}&terms=all&author=&fid[]=5&sc=1&sf=all&sk=t&sd=d&sr=posts&st=0&ch=300&t=0&submit=Search",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "caniuse.com",
|
|
r: 90,
|
|
s: "Can I use...",
|
|
sc: "Languages (html)",
|
|
t: "ciu",
|
|
u: "http://caniuse.com/#search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "caniusepython3.com",
|
|
r: 4,
|
|
s: "Can I Use Python 3?",
|
|
sc: "Languages (python)",
|
|
t: "ciupy3",
|
|
u: "https://caniusepython3.com/project/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "caniuse.com",
|
|
r: 0,
|
|
s: "can i use ",
|
|
sc: "Languages (other)",
|
|
t: "cius",
|
|
u: "https://caniuse.com/#search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "civilization.wikia.com",
|
|
r: 3,
|
|
s: "Civilization Wikia",
|
|
sc: "Games (specific)",
|
|
t: "civ",
|
|
u: "http://civilization.wikia.com/wiki/Special:Search?search={{{s}}}&fulltext=Search",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "civilization.wikia.com",
|
|
r: 0,
|
|
s: "Civilization Wikia",
|
|
sc: "Games (general)",
|
|
t: "civilization",
|
|
u: "http://civilization.wikia.com/wiki/Special:Search?search={{{s}}}&fulltext=Search",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "conjour.world",
|
|
r: 0,
|
|
s: "Conjour",
|
|
sc: "Specialty",
|
|
t: "cj",
|
|
u: "https://conjour.world/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "curia.europa.eu",
|
|
r: 0,
|
|
s: "Curia",
|
|
sc: "Law",
|
|
t: "cjeu",
|
|
u: "http://curia.europa.eu/juris/liste.jsf?language=en&num={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.ck12.org",
|
|
r: 0,
|
|
s: "cK-12.org",
|
|
sc: "Reference",
|
|
t: "ck12",
|
|
u: "https://www.ck12.org/search/?q={{{s}}}&referrer=top_nav&autoComplete=false",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "ck2.paradoxwikis.com",
|
|
r: 0,
|
|
s: "CK2Wiki",
|
|
sc: "Games (specific)",
|
|
t: "ck2",
|
|
u: "https://ck2.paradoxwikis.com/index.php?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.chefkoch.de",
|
|
r: 21,
|
|
s: "Chefkoch.de",
|
|
sc: "Food",
|
|
t: "ck",
|
|
u: "http://www.chefkoch.de/rs/s0/{{{s}}}/Rezepte.html",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "craftkeys.com",
|
|
r: 0,
|
|
s: "CraftKeys",
|
|
sc: "Reference (words)",
|
|
t: "ckeys",
|
|
u: "http://craftkeys.com/site-info/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "ck2.paradoxwikis.com",
|
|
r: 0,
|
|
s: "Crusader Kings II Wiki",
|
|
sc: "Games (specific)",
|
|
t: "ckiiwiki",
|
|
u: "https://ck2.paradoxwikis.com/index.php?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.cookinglight.com",
|
|
r: 0,
|
|
s: "http://www.cookinglight.com",
|
|
sc: "Search",
|
|
t: "cklt",
|
|
u: "http://www.cookinglight.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.creationkit.com",
|
|
r: 0,
|
|
s: "Creation Kit",
|
|
sc: "Programming",
|
|
t: "ckt",
|
|
u: "http://www.creationkit.com/index.php?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.1001cocktails.com",
|
|
r: 0,
|
|
s: "1001cocktails",
|
|
sc: "Food",
|
|
t: "cktl",
|
|
u: "http://www.1001cocktails.com/cocktails/rechercheCocktailsNom.php?mot={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.encole.com",
|
|
r: 0,
|
|
s: "Clamps",
|
|
sc: "Online (marketplace)",
|
|
t: "clamps",
|
|
u: "https://www.encole.com/search/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "clanky.seznam.cz",
|
|
r: 0,
|
|
s: "Seznam \u010cl\u00e1nky",
|
|
sc: "Search (non-US)",
|
|
t: "clanky",
|
|
u: "https://clanky.seznam.cz/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.clarin.com",
|
|
r: 0,
|
|
s: "Clar\u00edn",
|
|
sc: "International",
|
|
t: "clarin",
|
|
u: "https://www.clarin.com/buscador/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "clark.com",
|
|
r: 0,
|
|
s: "Clark Howard",
|
|
sc: "Specialty",
|
|
t: "clark",
|
|
u: "https://clark.com/search/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.clarks.co.uk",
|
|
r: 0,
|
|
s: "Clarks",
|
|
sc: "Online (marketplace)",
|
|
t: "clarks",
|
|
u: "https://www.clarks.co.uk/search/?text={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.clasohlson.com",
|
|
r: 0,
|
|
s: "Clas Ohlson",
|
|
sc: "Big box/department",
|
|
t: "clas",
|
|
u: "https://www.clasohlson.com/se/view/content/search?searchKey=All&search_prefix={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.clasohlson.com",
|
|
r: 0,
|
|
s: "Clas Ohlson Finland",
|
|
sc: "Online",
|
|
t: "clasfi",
|
|
u: "https://www.clasohlson.com/fi/view/content/search?N=0&Ntk=All&Ntt={{{s}}}&Nty=1&D={{{s}}}&Ntx=mode+matchpartial&Dx=mode+matchpartial&showTabs=true",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "clashofclans.wikia.com",
|
|
r: 0,
|
|
s: "Clash of Clans",
|
|
sc: "Games (specific)",
|
|
t: "clashofclans",
|
|
u: "http://clashofclans.wikia.com/wiki/Special:Search?search={{{s}}}&fulltext=Search&ns0=1&ns14=1#",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.clasohlson.com",
|
|
r: 0,
|
|
s: "Clas Ohlson Norge",
|
|
sc: "Big box/department",
|
|
t: "clasno",
|
|
u: "https://www.clasohlson.com/no/view/content/search?searchKey=All&search_prefix={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "classicdb.ch",
|
|
r: 0,
|
|
s: "ClassicDB",
|
|
sc: "Games (WOW)",
|
|
t: "classicdb",
|
|
u: "http://classicdb.ch/?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.classrr.com",
|
|
r: 0,
|
|
s: "Classrr",
|
|
sc: "Online (marketplace)",
|
|
t: "classrr",
|
|
u: "https://www.classrr.com/classroom/list?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "clcnederland.com",
|
|
r: 0,
|
|
s: "CLC Nederland",
|
|
sc: "Online",
|
|
t: "clc",
|
|
u: "https://clcnederland.com/producten/zoeken?sq={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.craigslist.org",
|
|
r: 143,
|
|
s: "Craigslist",
|
|
sc: "Online (marketplace)",
|
|
t: "cl",
|
|
u: "https://www.craigslist.org/search/sss?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "support.cloudinary.com",
|
|
r: 0,
|
|
s: "Cloudinary",
|
|
sc: "Companies",
|
|
t: "cld",
|
|
u: "https://support.cloudinary.com/hc/en-us/search?utf8=%E2%9C%93&query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.cleanfreak.com",
|
|
r: 0,
|
|
s: "CleanFreak",
|
|
sc: "Online",
|
|
t: "cleanfreak",
|
|
u: "https://www.cleanfreak.com/catalogsearch/result/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.cleanuptheworld.org",
|
|
r: 0,
|
|
s: "Clean Up the World",
|
|
sc: "Topical",
|
|
t: "cleanuptheworld",
|
|
u: "http://www.cleanuptheworld.org/en/search.html?kw={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.clearly.ca",
|
|
r: 0,
|
|
s: "Clearly.ca",
|
|
sc: "Online (intl)",
|
|
t: "clearly",
|
|
u: "https://www.clearly.ca/eyewear/search?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.clearwebstats.com",
|
|
r: 0,
|
|
s: "ClearWebStats",
|
|
sc: "Domains",
|
|
t: "clearweb",
|
|
u: "http://www.clearwebstats.com/process.php?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.commandlinefu.com",
|
|
r: 0,
|
|
s: "Command Line Fu",
|
|
sc: "Sysadmin",
|
|
t: "clf",
|
|
u: "http://www.commandlinefu.com/commands/matching/{{{s}}}/bys=/sort-by-votes",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.charlotteslaw.nl",
|
|
r: 0,
|
|
s: "Charlotte's Law & Fine Prints",
|
|
sc: "Law",
|
|
t: "clfp",
|
|
u: "https://www.charlotteslaw.nl/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.lispworks.com",
|
|
r: 39,
|
|
s: "CommonLisp HyperSpec",
|
|
sc: "Languages (lisp)",
|
|
t: "clhs",
|
|
u: "http://www.lispworks.com/cgi-bin/search.cgi?q={{{s}}}&cmd=Search%21&t=-D--HB-",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "clickforce.com.au",
|
|
r: 0,
|
|
s: "ClickForce",
|
|
sc: "Startups",
|
|
t: "clickforce",
|
|
u: "https://clickforce.com.au/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.clicrbs.com.br",
|
|
r: 0,
|
|
s: "ClicRBS",
|
|
sc: "Magazine",
|
|
t: "clicrbs",
|
|
u: "http://www.clicrbs.com.br/busca/rs/?q={{{s}}} ",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.clien.net",
|
|
r: 26,
|
|
s: "Clien",
|
|
sc: "Blogs",
|
|
t: "clien",
|
|
u: "https://www.clien.net/service/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.music.cliggo.com",
|
|
r: 0,
|
|
s: "Cliggo",
|
|
sc: "Music",
|
|
t: "cliggo",
|
|
u: "https://www.music.cliggo.com/search/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "cliki.net",
|
|
r: 0,
|
|
s: "Cliki",
|
|
sc: "Languages (lisp)",
|
|
t: "cliki",
|
|
u: "http://cliki.net/site/search?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "climatecounts.org",
|
|
r: 0,
|
|
s: "Climate Counts",
|
|
sc: "Tools",
|
|
t: "climatecounts",
|
|
u: "http://climatecounts.org/searchresults.php?p=term&term={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.climatempo.com.br",
|
|
r: 0,
|
|
s: "Climatempo",
|
|
sc: "Weather",
|
|
t: "climatempo",
|
|
u: "http://www.climatempo.com.br/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.climedweb.com",
|
|
r: 0,
|
|
s: "Climed Sevi\u00e7os de Saude",
|
|
sc: "Health",
|
|
t: "climed",
|
|
u: "http://www.climedweb.com/wp/?s=",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "jobs.advancedclinical.com",
|
|
r: 0,
|
|
s: "Advanced Clinical Careers",
|
|
sc: "Jobs",
|
|
t: "clinical",
|
|
u: "https://jobs.advancedclinical.com/search-results?keywords={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "clinicasyhospitales.com.co",
|
|
r: 0,
|
|
s: "https://clinicasyhospitales.com.co/",
|
|
sc: "Health",
|
|
t: "clinicas",
|
|
u: "https://clinicasyhospitales.com.co/buscar?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "clio.columbia.edu",
|
|
r: 0,
|
|
s: "CLIO: Columbia University Library Catalog",
|
|
sc: "Academic",
|
|
t: "clio",
|
|
u: "https://clio.columbia.edu/catalog?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "office.microsoft.com",
|
|
r: 0,
|
|
s: "Microsoft Clipart",
|
|
sc: "Companies",
|
|
t: "clipart",
|
|
u: "http://office.microsoft.com/en-us/clipart/results.aspx?qu={{{s}}}&sc=20",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.clipstijl.nl",
|
|
r: 0,
|
|
s: "Clipstijl",
|
|
sc: "Video",
|
|
t: "clipstijl",
|
|
u: "http://www.clipstijl.nl/zoeken.php?zoek={{{s}}} ",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "cliqist.com",
|
|
r: 0,
|
|
s: "Cliqist",
|
|
sc: "Blogs",
|
|
t: "cliqist",
|
|
u: "http://cliqist.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "beta.cliqz.com",
|
|
r: 0,
|
|
s: "Cliqz",
|
|
sc: "Search",
|
|
t: "cliqz",
|
|
u: "https://beta.cliqz.com/search?q={{{s}}}&lang=en",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "clojuredocs.org",
|
|
r: 45,
|
|
s: "ClojureDocs",
|
|
sc: "Languages (clojure)",
|
|
t: "clj",
|
|
u: "https://clojuredocs.org/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "cljdoc.org",
|
|
r: 0,
|
|
s: "cljdoc",
|
|
sc: "Languages (clojure)",
|
|
t: "cljdoc",
|
|
u: "https://cljdoc.org/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.clker.com",
|
|
r: 0,
|
|
s: "Clker",
|
|
sc: "Images",
|
|
t: "clker",
|
|
u: "http://www.clker.com/search/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.clockworksynergy.com",
|
|
r: 0,
|
|
s: "Clockwork Synergy",
|
|
sc: "Online (intl)",
|
|
t: "clockworksynergy",
|
|
u: "http://www.clockworksynergy.com/?s={{{s}}} &post_type=product",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "clojars.org",
|
|
r: 0,
|
|
s: "Clojars",
|
|
sc: "Languages (clojure)",
|
|
t: "clojars",
|
|
u: "https://clojars.org/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "clojuredocs.org",
|
|
r: 23,
|
|
s: "Clojure Docs",
|
|
sc: "Languages (other)",
|
|
t: "clojure",
|
|
u: "http://clojuredocs.org/search?x=0&y=0&q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "clojuredocs.org",
|
|
r: 15,
|
|
s: "Clojure Docs",
|
|
sc: "Languages (other)",
|
|
t: "clojuredocs",
|
|
u: "http://clojuredocs.org/search?x=0&y=0&q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "cloogle.org",
|
|
r: 0,
|
|
s: "Cloogle",
|
|
sc: "Programming",
|
|
t: "cloogle",
|
|
u: "http://cloogle.org/#{{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.worldcat.org",
|
|
r: 0,
|
|
s: "WorldCat",
|
|
sc: "Search (DDG)",
|
|
t: "closebook",
|
|
u: "https://www.worldcat.org/search?qt=worldcat_org_bks&q={{{s}}}&fq=dt%3Abks",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "docs.aws.amazon.com",
|
|
r: 0,
|
|
s: "AWS CloudFormation Documentation",
|
|
sc: "Sysadmin",
|
|
t: "cloudformation",
|
|
u: "https://docs.aws.amazon.com/search/doc-search.html?searchPath=documentation-guide&searchQuery={{{s}}}&this_doc_product=AWS+CloudFormation&this_doc_guide=User+Guide&doc_locale=en_us#facet_doc_product=AWS CloudFormation&facet_doc_guide=User Guide",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "cloudron.io",
|
|
r: 0,
|
|
s: "Cloudron",
|
|
sc: "Downloads (apps)",
|
|
t: "cloudron",
|
|
u: "https://cloudron.io/appstore.html?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.cloudsdale.org",
|
|
r: 0,
|
|
s: "Cloudsdale",
|
|
sc: "Social",
|
|
t: "cloudsdale",
|
|
u: "https://www.cloudsdale.org/explore/clouds/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "nightwear.clovia.com",
|
|
r: 0,
|
|
s: "Clovia",
|
|
sc: "Online",
|
|
t: "clovia.app",
|
|
u: "https://nightwear.clovia.com/search/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "clearlinux.org",
|
|
r: 3,
|
|
s: "Clear Linux* Project",
|
|
sc: "Sysadmin",
|
|
t: "clr",
|
|
u: "https://clearlinux.org/search?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "calil.jp",
|
|
r: 0,
|
|
s: "\u6771\u4eac\u90fd\u306e\u56f3\u66f8\u9928\u6a2a\u65ad\u691c\u7d22 | \u30ab\u30fc\u30ea\u30eb",
|
|
sc: "Reference",
|
|
t: "clt",
|
|
u: "https://calil.jp/local/search?csid=tokyo&q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.clubic.com",
|
|
r: 0,
|
|
s: "Clubic",
|
|
sc: "Downloads (software)",
|
|
t: "clubic",
|
|
u: "http://www.clubic.com/r/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "catalogue.leidenuniv.nl",
|
|
r: 0,
|
|
s: "Catalogue Leiden University",
|
|
sc: "Academic",
|
|
t: "clu",
|
|
u: "https://catalogue.leidenuniv.nl/primo-explore/search?query=any,contains,{{{s}}}&tab=all_content&search_scope=All_Content&vid=UBL_V1&lang=en_US&offset=0",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "clwb.net",
|
|
r: 0,
|
|
s: "clwb",
|
|
sc: "Events",
|
|
t: "clwb",
|
|
u: "https://clwb.net/?post_type=event&s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.cmake.org",
|
|
r: 0,
|
|
s: "CMake 3.0 Documentation",
|
|
sc: "Languages (other)",
|
|
t: "cmake30",
|
|
u: "http://www.cmake.org/cmake/help/v3.0/search.html?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "cmake.org",
|
|
r: 118,
|
|
s: "CMake documentation",
|
|
sc: "Programming",
|
|
t: "cmake",
|
|
u: "https://cmake.org/cmake/help/latest/search.html?q={{{s}}}&check_keywords=yes&area=default",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "coinmarketcap.com",
|
|
r: 0,
|
|
s: "CoinMarketCap",
|
|
sc: "Tools",
|
|
t: "cmcap",
|
|
u: "https://coinmarketcap.com/currencies/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "coinmarketcap.com",
|
|
r: 294,
|
|
s: "CoinMarketCap",
|
|
sc: "Tools",
|
|
t: "cmc",
|
|
u: "https://coinmarketcap.com/currencies/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "cm.center",
|
|
r: 0,
|
|
s: "CM.Center",
|
|
sc: "Online (marketplace)",
|
|
t: "cm",
|
|
u: "https://cm.center/catalog/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.chicagomusicexchange.com",
|
|
r: 0,
|
|
s: "Chicago Music Exchange",
|
|
sc: "Online",
|
|
t: "cme",
|
|
u: "https://www.chicagomusicexchange.com/search?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "library.cmi.ac.in",
|
|
r: 0,
|
|
s: "CMI Library",
|
|
sc: "Search (Private)",
|
|
t: "cmi",
|
|
u: "http://library.cmi.ac.in/cgi-bin/koha/opac-search.pl?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "catalog.clcohio.org",
|
|
r: 9,
|
|
s: "Columbus Metropolitan Library",
|
|
sc: "Learning",
|
|
t: "cml",
|
|
u: "http://catalog.clcohio.org/polaris/search/searchresults.aspx?term={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.cmmmanager.com",
|
|
r: 0,
|
|
s: "CMM-Manager Forum",
|
|
sc: "Companies",
|
|
t: "cmmm",
|
|
u: "https://www.cmmmanager.com/forum/search.php?keywords={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.cmmmanager.com",
|
|
r: 0,
|
|
s: "CMM-Manager",
|
|
sc: "Companies",
|
|
t: "cmmmgr",
|
|
u: "https://www.cmmmanager.com/forum/search.php?keywords={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "compare.eu",
|
|
r: 0,
|
|
s: "compare.eu",
|
|
sc: "Online (deals)",
|
|
t: "cmpeu",
|
|
u: "http://compare.eu/?fs={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.chicagomanualofstyle.org",
|
|
r: 0,
|
|
s: "Chicago Manual of Style",
|
|
sc: "Academic",
|
|
t: "cms",
|
|
u: "http://www.chicagomanualofstyle.org/search.epl?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "cmslxr.fnal.gov",
|
|
r: 0,
|
|
s: "CMSSW Software Cross-Reference",
|
|
sc: "Libraries/Frameworks",
|
|
t: "cmssw",
|
|
u: "http://cmslxr.fnal.gov/search?_filestring=&_string={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "cnba.uba.ar",
|
|
r: 0,
|
|
s: "Colegio Nacional de Buenos Aires",
|
|
sc: "Academic (math/cs)",
|
|
t: "cnba",
|
|
u: "http://cnba.uba.ar/search/node/{{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "search.cnbc.com",
|
|
r: 0,
|
|
s: "CNBC",
|
|
sc: "Broadcast",
|
|
t: "cnbc",
|
|
u: "http://search.cnbc.com/main.do?target=all&keywords={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.charitynavigator.org",
|
|
r: 0,
|
|
s: "Charity Navigator",
|
|
sc: "Topical",
|
|
t: "cn",
|
|
u: "http://www.charitynavigator.org/index.cfm?bay=search.results&keyword_list={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "cndic.naver.com",
|
|
r: 16,
|
|
s: "Naver Chinese Dictionary",
|
|
sc: "Learning",
|
|
t: "cndic",
|
|
u: "http://cndic.naver.com/search/all?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.cnet.com",
|
|
r: 16,
|
|
s: "CNET",
|
|
sc: "Blogs",
|
|
t: "cnet",
|
|
u: "http://www.cnet.com/1770-5_1-0.html?query={{{s}}}&tag=srch&target=nw",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.cnet.com",
|
|
r: 0,
|
|
s: "CNET en espa\u00f1ol",
|
|
sc: "Blogs (intl)",
|
|
t: "cnete",
|
|
u: "http://www.cnet.com/es/busqueda/?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.cnet.com",
|
|
r: 0,
|
|
s: "CNET UK",
|
|
sc: "Blogs (intl)",
|
|
t: "cnetuk",
|
|
u: "http://www.cnet.com/search/?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.conservativehome.com",
|
|
r: 0,
|
|
s: "Conservative Home",
|
|
sc: "Online",
|
|
t: "cnh",
|
|
u: "https://www.conservativehome.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.cnm.edu",
|
|
r: 0,
|
|
s: "Central New Mexico Community College",
|
|
sc: "Academic",
|
|
t: "cnm",
|
|
u: "https://www.cnm.edu/@@gcse-searchresults?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.cnn.com",
|
|
r: 240,
|
|
s: "CNN",
|
|
sc: "Broadcast",
|
|
t: "cnn",
|
|
u: "http://www.cnn.com/search/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "cnnespanol.cnn.com",
|
|
r: 0,
|
|
s: "CNN en espa\u00f1ol",
|
|
sc: "International",
|
|
t: "cnne",
|
|
u: "http://cnnespanol.cnn.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.cineplex.com",
|
|
r: 0,
|
|
s: "Cineplex",
|
|
sc: "Movies",
|
|
t: "cnplx",
|
|
u: "http://www.cineplex.com/search-2015?search-query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.cnrtl.fr",
|
|
r: 0,
|
|
s: "CNRTL",
|
|
sc: "Reference (words intl)",
|
|
t: "cnrtla",
|
|
u: "http://www.cnrtl.fr/antonymie/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.cnrtl.fr",
|
|
r: 0,
|
|
s: "cnrtl concordance",
|
|
sc: "Reference (words)",
|
|
t: "cnrtlc",
|
|
u: "http://www.cnrtl.fr/concordance/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.cnrtl.fr",
|
|
r: 238,
|
|
s: "Centre national de ressources textuelles et lexicales",
|
|
sc: "Tools",
|
|
t: "cnrtl",
|
|
u: "http://www.cnrtl.fr/definition/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.cnrtl.fr",
|
|
r: 0,
|
|
s: "cnrtl d\u00e9finitions",
|
|
sc: "Reference (words)",
|
|
t: "cnrtld",
|
|
u: "http://www.cnrtl.fr/definition/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.cnrtl.fr",
|
|
r: 0,
|
|
s: "cnrtl \u00e9tymologie",
|
|
sc: "Reference (words)",
|
|
t: "cnrtle",
|
|
u: "http://www.cnrtl.fr/etymologie/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.cnrtl.fr",
|
|
r: 0,
|
|
s: "cnrtl morphologie",
|
|
sc: "Reference (words)",
|
|
t: "cnrtlm",
|
|
u: "http://www.cnrtl.fr/morphologie/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.cnrtl.fr",
|
|
r: 0,
|
|
s: "cnrtl proxemie",
|
|
sc: "Reference (words)",
|
|
t: "cnrtlp",
|
|
u: "http://www.cnrtl.fr/proxemie/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.cnrtl.fr",
|
|
r: 13,
|
|
s: "cnrtl synonymie",
|
|
sc: "Reference (words)",
|
|
t: "cnrtls",
|
|
u: "http://www.cnrtl.fr/synonymie/{{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "casinonews.today",
|
|
r: 0,
|
|
s: "Casino News Today",
|
|
sc: "Specialty",
|
|
t: "cnt",
|
|
u: "http://casinonews.today/?s={{{s}}} ",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.cnrtl.fr",
|
|
r: 18,
|
|
s: "Centre National de Ressources Textuelles et Lexicales",
|
|
sc: "Reference (words)",
|
|
t: "cntrl",
|
|
u: "http://www.cnrtl.fr/definition/{{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.counterpunch.org",
|
|
r: 0,
|
|
s: "Counterpunch",
|
|
sc: "Magazine",
|
|
t: "cntrp",
|
|
u: "https://www.counterpunch.org/search-results/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "cannanewswire.co",
|
|
r: 0,
|
|
s: "Canna Newswire",
|
|
sc: "Specialty",
|
|
t: "cnw",
|
|
u: "https://cannanewswire.co/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.xe.com",
|
|
r: 0,
|
|
s: "XE",
|
|
sc: "Tools",
|
|
t: "cny2eur",
|
|
u: "https://www.xe.com/currencyconverter/convert/?From=CNY&To=EUR&Amount={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.cheapies.nz",
|
|
r: 0,
|
|
s: "Cheapies NZ",
|
|
sc: "Online (deals)",
|
|
t: "cnz",
|
|
u: "https://www.cheapies.nz/search/node/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.coastercrazy.com",
|
|
r: 0,
|
|
s: "CoasterCrazy",
|
|
sc: "Misc",
|
|
t: "coastercrazy",
|
|
u: "http://www.coastercrazy.com/forums/search.php?keywords={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "cocatalog.loc.gov",
|
|
r: 0,
|
|
s: "Copyright Catalog (title)",
|
|
sc: "Law",
|
|
t: "cocatalog",
|
|
u: "http://cocatalog.loc.gov/cgi-bin/Pwebrecon.cgi?Search_Arg={{{s}}}&Search_Code=TALL&CNT=25&HIST=1",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "cocatalog.loc.gov",
|
|
r: 0,
|
|
s: "Copyright Catalog (name)",
|
|
sc: "Law",
|
|
t: "cocatalogn",
|
|
u: "http://cocatalog.loc.gov/cgi-bin/Pwebrecon.cgi?Search_Arg={{{s}}}&Search_Code=NALL&CNT=25&HIST=1",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "coccoc.com",
|
|
r: 0,
|
|
s: "C\u1ed1c C\u1ed1c",
|
|
sc: "Search (non-US)",
|
|
t: "coccoc",
|
|
u: "http://coccoc.com/search#query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.cocklestorm.com",
|
|
r: 0,
|
|
s: "Cocklestorm Fencing Ltd",
|
|
sc: "Online (marketplace)",
|
|
t: "cocklestorm",
|
|
u: "http://www.cocklestorm.com/catalogsearch/result/?q={{{s}}} ",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "developer.apple.com",
|
|
r: 0,
|
|
s: "Apple Developer",
|
|
sc: "Languages (cocoa)",
|
|
t: "cocoa",
|
|
u: "https://developer.apple.com/search/index.php?q={{{s}}} ",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "cocoapods.org",
|
|
r: 0,
|
|
s: "Cocoapods",
|
|
sc: "Languages (cocoa)",
|
|
t: "cocoapods",
|
|
u: "http://cocoapods.org/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "physics.nist.gov",
|
|
r: 0,
|
|
s: "https://physics.nist.gov/cuu/Constants/index.html",
|
|
sc: "Academic",
|
|
t: "codata",
|
|
u: "https://physics.nist.gov/cgi-bin/cuu/Results?search_for={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "coda.io",
|
|
r: 0,
|
|
s: "Coda Template",
|
|
sc: "Search",
|
|
t: "codat",
|
|
u: "https://coda.io/templates/productivity?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "support.code42.com",
|
|
r: 0,
|
|
s: "Code42",
|
|
sc: "Companies",
|
|
t: "code42",
|
|
u: "https://support.code42.com/Special:Search?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "codebottle.io",
|
|
r: 0,
|
|
s: "CodeBottle",
|
|
sc: "Programming",
|
|
t: "codebottle",
|
|
u: "https://codebottle.io/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "codecanyon.net",
|
|
r: 0,
|
|
s: "CodeCanyon",
|
|
sc: "Tech",
|
|
t: "codecanyon",
|
|
u: "http://codecanyon.net/search?utf8=%E2%9C%93&term={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "codedgar.com.ve",
|
|
r: 0,
|
|
s: "Codedgar",
|
|
sc: "Programming",
|
|
t: "codedgar",
|
|
u: "https://codedgar.com.ve/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "codeforces.com",
|
|
r: 34,
|
|
s: "Codeforces",
|
|
sc: "Programming",
|
|
t: "codeforces",
|
|
u: "http://codeforces.com/search?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "code.gov",
|
|
r: 0,
|
|
s: "Code.gov",
|
|
sc: "Programming",
|
|
t: "codegov",
|
|
u: "https://code.gov/search?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "code.kx.com",
|
|
r: 0,
|
|
s: "code.kx",
|
|
sc: "Programming",
|
|
t: "codekx",
|
|
u: "https://code.kx.com/q/search?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "codepen.io",
|
|
r: 0,
|
|
s: "Codepen",
|
|
sc: "Social (intl)",
|
|
t: "codepen",
|
|
u: "https://codepen.io/search/pens?q={{{s}}}&limit=all&type=type-pens",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "codepoints.net",
|
|
r: 0,
|
|
s: "Codepoints",
|
|
sc: "Tools",
|
|
t: "codepoints",
|
|
u: "http://codepoints.net/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.searchco.de",
|
|
r: 15,
|
|
s: "Search Code",
|
|
sc: "Search (non-US)",
|
|
t: "code",
|
|
u: "http://www.searchco.de/?q={{{s}}}&cs=on",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.codeweavers.com",
|
|
r: 0,
|
|
s: "Codeweavers",
|
|
sc: "Sysadmin",
|
|
t: "codeweavers",
|
|
u: "http://www.codeweavers.com/compatibility/search/?name={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "codex.wordpress.org",
|
|
r: 0,
|
|
s: "WordPress Codex",
|
|
sc: "Libraries/Frameworks (wordpress)",
|
|
t: "codex",
|
|
u: "http://codex.wordpress.org/?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.collinsdictionary.com",
|
|
r: 0,
|
|
s: "collinsdictionary",
|
|
sc: "Search",
|
|
t: "codi",
|
|
u: "https://www.collinsdictionary.com/dictionary/english/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "thecodinglove.com",
|
|
r: 0,
|
|
s: "thecodinglove.com",
|
|
sc: "Blogs",
|
|
t: "codinglove",
|
|
u: "http://thecodinglove.com/search/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "cod.esportspedia.com",
|
|
r: 0,
|
|
s: "Call of Duty eSports Wiki",
|
|
sc: "Games (specific)",
|
|
t: "codpedia",
|
|
u: "https://cod.esportspedia.com/index.php?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "tympanus.net",
|
|
r: 0,
|
|
s: "Codrops",
|
|
sc: "Design",
|
|
t: "codrops",
|
|
u: "http://tympanus.net/codrops/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "callofduty.wikia.com",
|
|
r: 0,
|
|
s: "Call of Duty Wiki",
|
|
sc: "Games (specific)",
|
|
t: "codw",
|
|
u: "http://callofduty.wikia.com/wiki/Special:Search?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "getsmokin.nl",
|
|
r: 0,
|
|
s: "GetSmokin'",
|
|
sc: "Misc",
|
|
t: "coffeeshop",
|
|
u: "https://getsmokin.nl/coffeeshops?shopsearch={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.cloudofgoods.com",
|
|
r: 0,
|
|
s: "Cloud of Goods",
|
|
sc: "Online (marketplace)",
|
|
t: "cog",
|
|
u: "https://www.cloudofgoods.com/s/products?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "bookmanager.com",
|
|
r: 0,
|
|
s: "Coho Books",
|
|
sc: "Online",
|
|
t: "coho",
|
|
u: "http://bookmanager.com/760081x/index.php?q=h.tviewer&using_sb=status&qsb=keyword&so=oh&searchtype=keyword&qs={{{s}}}&x=0&y=0&qs_file=",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "coinmarketcap.com",
|
|
r: 16,
|
|
s: "CoinMarketCap",
|
|
sc: "Search",
|
|
t: "coin",
|
|
u: "https://coinmarketcap.com/search/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.coingecko.com",
|
|
r: 29,
|
|
s: "CoinGecko",
|
|
sc: "Tools",
|
|
t: "coingecko",
|
|
u: "https://www.coingecko.com/en/search/bang?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "coinmarketcap.com",
|
|
r: 4,
|
|
s: "Coinmarketcap",
|
|
sc: "Tracking",
|
|
t: "coinmarketcap",
|
|
u: "https://coinmarketcap.com/search/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "coinmarketcap.com",
|
|
r: 0,
|
|
s: "Coin Market Cap",
|
|
sc: "Tools",
|
|
t: "coinmc",
|
|
u: "https://coinmarketcap.com/currencies/search/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.londoncoins.co.uk",
|
|
r: 0,
|
|
s: "London Coins",
|
|
sc: "Search",
|
|
t: "coins",
|
|
u: "http://www.londoncoins.co.uk/?page=Pastresults&searchterm={{{s}}}&searchtype=1",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.colourbox.com",
|
|
r: 5,
|
|
s: "Colourbox",
|
|
sc: "Search",
|
|
t: "col",
|
|
u: "https://www.colourbox.com/search/find?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "community.adobe.com",
|
|
r: 0,
|
|
s: "ColdFusion Docs",
|
|
sc: "Companies",
|
|
t: "coldfusion",
|
|
u: "http://community.adobe.com/help/search.html?searchterm={{{s}}}&go=go&q={{{s}}}&l=coldfusion_product_adobelr&x=0&y=0&area=0&lr=en_US",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "shop.coles.com.au",
|
|
r: 8,
|
|
s: "Coles",
|
|
sc: "Online",
|
|
t: "coles",
|
|
u: "https://shop.coles.com.au/a/a-national/everything/search/{{{s}}}?pageNumber=1",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.collegeboard.org",
|
|
r: 0,
|
|
s: "CollegeBoard",
|
|
sc: "Academic",
|
|
t: "collegeboard",
|
|
u: "https://www.collegeboard.org/search?tp=usearch&x=15&x1=t4&y=13&searchType=site&word={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.collegeconfidential.com",
|
|
r: 0,
|
|
s: "CollegeConfidential Forums",
|
|
sc: "Academic",
|
|
t: "collegeconfidential",
|
|
u: "http://www.collegeconfidential.com/search_results.htm?q={{{s}}}&sa=Google+Search&userInput=&sitesearch=collegeconfidential.com&cx=013579521852154800353%3Avvp1k6kluvq&cof=FORID%3A9 ",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.collinsdictionary.com",
|
|
r: 100,
|
|
s: "Collins Dictionary",
|
|
sc: "Reference (words)",
|
|
t: "collins",
|
|
u: "http://www.collinsdictionary.com/dictionary/english/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.collinsdictionary.com",
|
|
r: 0,
|
|
s: "Collins German to English",
|
|
sc: "Search",
|
|
t: "collinsge",
|
|
u: "https://www.collinsdictionary.com/dictionary/german-english/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "oxforddictionary.so8848.com",
|
|
r: 0,
|
|
s: "Online Oxford Collocation Dictionary",
|
|
sc: "Reference (words)",
|
|
t: "collocation",
|
|
u: "http://oxforddictionary.so8848.com/search1?word={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "colloq.io",
|
|
r: 0,
|
|
s: "Colloq.io",
|
|
sc: "Events",
|
|
t: "colloq",
|
|
u: "https://colloq.io/search?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "colostate-primo.hosted.exlibrisgroup.com",
|
|
r: 0,
|
|
s: "Colorado State Universtiy library",
|
|
sc: "Academic",
|
|
t: "Cololib",
|
|
u: "https://colostate-primo.hosted.exlibrisgroup.com/primo-explore/search?vid=01COLSU&lang=en_US&primoQueryTemp=d&search_field=any&search_scope=Everything&query=any,contains,{{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.colorhexa.com",
|
|
r: 4,
|
|
s: "ColorHexa",
|
|
sc: "Design",
|
|
t: "color",
|
|
u: "http://www.colorhexa.com/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.colormango.com",
|
|
r: 0,
|
|
s: "ColorMango",
|
|
sc: "Online (deals)",
|
|
t: "colormango",
|
|
u: "http://www.colormango.com/search/index.asp?keyword={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "combodeck.net",
|
|
r: 0,
|
|
s: "ComboDeck",
|
|
sc: "Games (specific)",
|
|
t: "combodeck",
|
|
u: "http://combodeck.net/Query/{{{s}}} ",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.comc.com",
|
|
r: 0,
|
|
s: "COMC",
|
|
sc: "Online",
|
|
t: "comc",
|
|
u: "https://www.comc.com/Cards,={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "computernewb.com",
|
|
r: 0,
|
|
s: "Computernewb Wiki",
|
|
sc: "Learning",
|
|
t: "com",
|
|
u: "https://computernewb.com/w/index.php?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "comfy.ua",
|
|
r: 0,
|
|
s: "Comfy",
|
|
sc: "Online",
|
|
t: "comfy",
|
|
u: "https://comfy.ua/catalogsearch/result?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.comic-rocket.com",
|
|
r: 0,
|
|
s: "Comic Rocket",
|
|
sc: "Comics",
|
|
t: "comicrocket",
|
|
u: "https://www.comic-rocket.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.comicvine.com",
|
|
r: 0,
|
|
s: "Comic Vine",
|
|
sc: "Comics",
|
|
t: "comicvine",
|
|
u: "http://www.comicvine.com/search/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.comixology.com",
|
|
r: 0,
|
|
s: "Comixology",
|
|
sc: "Online",
|
|
t: "comix",
|
|
u: "https://www.comixology.com/search?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.comixology.eu",
|
|
r: 0,
|
|
s: "Comixology.eu",
|
|
sc: "Online",
|
|
t: "comixeu",
|
|
u: "https://www.comixology.eu/search?search={{{s}}} ",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.comixology.co.uk",
|
|
r: 0,
|
|
s: "ComiXology UK",
|
|
sc: "Online",
|
|
t: "comixuk",
|
|
u: "https://www.comixology.co.uk/search?search={{{s}}}&submit=Submit",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.commitstrip.com",
|
|
r: 0,
|
|
s: "Commit Strip",
|
|
sc: "Comics",
|
|
t: "commitstrip",
|
|
u: "http://www.commitstrip.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.commonsensemedia.org",
|
|
r: 6,
|
|
s: "Common Sense Media",
|
|
sc: "Misc",
|
|
t: "commonsensemedia",
|
|
u: "http://www.commonsensemedia.org/search/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "commons.wikimedia.org",
|
|
r: 197,
|
|
s: "Wikimedia Commons",
|
|
sc: "General",
|
|
t: "commons",
|
|
u: "https://commons.wikimedia.org/w/index.php?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "beta.companieshouse.gov.uk",
|
|
r: 9,
|
|
s: "UK Companies House",
|
|
sc: "Search (non-US)",
|
|
t: "companieshouse",
|
|
u: "https://beta.companieshouse.gov.uk/search/companies?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.comparegames.com.br",
|
|
r: 0,
|
|
s: "Compare Games",
|
|
sc: "Online",
|
|
t: "comparegames",
|
|
u: "http://www.comparegames.com.br/comprar/{{{s}}} ",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "compass-style.org",
|
|
r: 0,
|
|
s: "Compass",
|
|
sc: "Libraries/Frameworks",
|
|
t: "compass",
|
|
u: "http://compass-style.org/search/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "compfight.com",
|
|
r: 0,
|
|
s: "Compfight",
|
|
sc: "Images",
|
|
t: "compfight",
|
|
u: "http://compfight.com/search/{{{s}}} /",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "mail.google.com",
|
|
r: 6,
|
|
s: "Compose Email (Gmail)",
|
|
sc: "Google",
|
|
t: "compose",
|
|
u: "https://mail.google.com/mail/?view=cm&to=&su={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.comptoirsecu.fr",
|
|
r: 0,
|
|
s: "Le Comptoir S\u00e9cu",
|
|
sc: "Blogs",
|
|
t: "comptoirsecu",
|
|
u: "http://www.comptoirsecu.fr/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.compumundo.com.ar",
|
|
r: 0,
|
|
s: "Compumundo",
|
|
sc: "Online",
|
|
t: "compumundo",
|
|
u: "https://www.compumundo.com.ar/q/{{{s}}}/srch?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.computerhope.com",
|
|
r: 0,
|
|
s: "Computer Hope",
|
|
sc: "Programming",
|
|
t: "computerhope",
|
|
u: "https://www.computerhope.com/search2.htm?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.computrabajo.com.ar",
|
|
r: 0,
|
|
s: "CompuTrabajo",
|
|
sc: "Jobs",
|
|
t: "computrabajo",
|
|
u: "http://www.computrabajo.com.ar/ofertas-de-trabajo/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.conference-service.com",
|
|
r: 0,
|
|
s: "COMS (conference-service.com)",
|
|
sc: "Events",
|
|
t: "coms",
|
|
u: "https://www.conference-service.com/conferences/conference-search.html?searchwords={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.consumeraffairs.com",
|
|
r: 0,
|
|
s: "Consumer Affairs",
|
|
sc: "Services",
|
|
t: "conaff",
|
|
u: "https://www.consumeraffairs.com/search.html?q={{{s}}}&cat=homepage",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "conarte.org.mx",
|
|
r: 0,
|
|
s: "CONARTE",
|
|
sc: "Design",
|
|
t: "conarte",
|
|
u: "http://conarte.org.mx/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.pollstar.com",
|
|
r: 0,
|
|
s: "Pollstar",
|
|
sc: "Music",
|
|
t: "concerts",
|
|
u: "http://www.pollstar.com/tour/searchall.pl?By=All&Content={{{s}}}&go_green.x=0&go_green.y=0",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "anaconda.org",
|
|
r: 52,
|
|
s: "https://anaconda.org",
|
|
sc: "Downloads",
|
|
t: "conda",
|
|
u: "https://anaconda.org/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.elconfidencial.com",
|
|
r: 0,
|
|
s: "El Confidencial",
|
|
sc: "Newspaper",
|
|
t: "confi",
|
|
u: "http://www.elconfidencial.com/buscar/2-6-1-3/0/1/10/desc/{{{s}}}/",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "config.lk",
|
|
r: 0,
|
|
s: "Config",
|
|
sc: "Blogs (intl)",
|
|
t: "config",
|
|
u: "https://config.lk/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "portal.core.edu.au",
|
|
r: 0,
|
|
s: "Computing Research and Education Association of Australasia, CORE",
|
|
sc: "Academic (math/cs)",
|
|
t: "confrank",
|
|
u: "http://portal.core.edu.au/conf-ranks/?search={{{s}}}&by=all&source=all&sort=atitle&page=1",
|
|
},
|
|
{
|
|
d: "www.conferenceranks.com",
|
|
r: 0,
|
|
s: "Conference Ranks",
|
|
t: "confranks",
|
|
u: "http://www.conferenceranks.com/?searchall={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.congress.gov",
|
|
r: 0,
|
|
s: "Congress",
|
|
sc: "Government",
|
|
t: "congress",
|
|
u: "https://www.congress.gov/search?q={%22source%22%3A%22legislation%22%2C%22search%22%3A%22{{{s}}}%22}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "conjugator.reverso.net",
|
|
r: 0,
|
|
s: "conjugator.reverso.net",
|
|
sc: "Tools",
|
|
t: "conjen",
|
|
u: "http://conjugator.reverso.net/conjugation-english-verb-{{{s}}}.html",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.spanishdict.com",
|
|
r: 0,
|
|
s: "SpanishDict - Conjugate",
|
|
sc: "Reference (words)",
|
|
t: "conjes",
|
|
u: "http://www.spanishdict.com/conjugate/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "conjugueur.reverso.net",
|
|
r: 9,
|
|
s: "conjugueur.reverso.net",
|
|
sc: "Tools",
|
|
t: "conjfr",
|
|
u: "http://conjugueur.reverso.net/conjugaison-francais-verbe-{{{s}}}.html",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "leconjugueur.lefigaro.fr",
|
|
r: 23,
|
|
s: "Le conjugueur",
|
|
sc: "Search (non-US)",
|
|
t: "conj",
|
|
u: "https://leconjugueur.lefigaro.fr/conjugaison/verbe/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.conjugacao.com.br",
|
|
r: 3,
|
|
s: "conjuga\u00e7\u00e3o.com.br",
|
|
sc: "Reference (words intl)",
|
|
t: "conjugacao",
|
|
u: "https://www.conjugacao.com.br/busca.php?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.conjuga-me.net",
|
|
r: 0,
|
|
s: "Conjuga-me",
|
|
sc: "Reference (words)",
|
|
t: "conjuga",
|
|
u: "http://www.conjuga-me.net/verbo-{{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "leconjugueur.lefigaro.fr",
|
|
r: 0,
|
|
s: "Le figaro",
|
|
sc: "Learning",
|
|
t: "conjuguer",
|
|
u: "http://leconjugueur.lefigaro.fr/conjugaison/verbe/{{{s}}}.html",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.connectny.info",
|
|
r: 0,
|
|
s: "Connect NY",
|
|
sc: "Academic",
|
|
t: "connectny",
|
|
u: "http://www.connectny.info/search/?searchtype=X&SORT=D&searcharg={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.conrad.at",
|
|
r: 0,
|
|
s: "Conrad Austria",
|
|
sc: "Online",
|
|
t: "conradat",
|
|
u: "https://www.conrad.at/de/Search.html?searchType=REGULAR&search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.conrad.de",
|
|
r: 3,
|
|
s: "Conrad",
|
|
sc: "Tech",
|
|
t: "conrad",
|
|
u: "http://www.conrad.de/ce/de/Search.html?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "consent.games",
|
|
r: 0,
|
|
s: "Consent Games",
|
|
sc: "Games (general)",
|
|
t: "consent",
|
|
u: "https://consent.games/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.conservapedia.com",
|
|
r: 6,
|
|
s: "Conservapedia",
|
|
sc: "Reference (fun)",
|
|
t: "conservapedia",
|
|
u: "http://www.conservapedia.com/index.php?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.consultant.ru",
|
|
r: 0,
|
|
s: "Consultant Plus",
|
|
sc: "Law",
|
|
t: "consplus",
|
|
u: "https://www.consultant.ru/search/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.consumerreports.org",
|
|
r: 0,
|
|
s: "Consumer Reports",
|
|
sc: "Services",
|
|
t: "consumer",
|
|
u: "https://www.consumerreports.org/search/?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.consumerlab.com",
|
|
r: 0,
|
|
s: "ConsumerLab.com",
|
|
sc: "Health",
|
|
t: "consumerlab",
|
|
u: "https://www.consumerlab.com/Search/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "contacts.google.com",
|
|
r: 26,
|
|
s: "Google Contacts",
|
|
sc: "Google",
|
|
t: "contacts",
|
|
u: "https://contacts.google.com/search/{{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "contamet.wordpress.com",
|
|
r: 0,
|
|
s: "contamet.wordpress.com",
|
|
sc: "Specialty",
|
|
t: "contamet",
|
|
u: "http://contamet.wordpress.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.continente.pt",
|
|
r: 0,
|
|
s: "Continente",
|
|
sc: "Big box/department",
|
|
t: "continente",
|
|
u: "http://www.continente.pt/stores/continente/pt-pt/public/Pages/searchResults.aspx?k={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.conversadesofa.com",
|
|
r: 0,
|
|
s: "Conversa de Sof\u00e1",
|
|
sc: "Games (general)",
|
|
t: "conversa",
|
|
u: "http://www.conversadesofa.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.clipconverter.cc",
|
|
r: 7,
|
|
s: "ClipConverter.cc",
|
|
sc: "Video",
|
|
t: "convert",
|
|
u: "http://www.clipconverter.cc/?url={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "theconversation.com",
|
|
r: 0,
|
|
s: "The Conversation",
|
|
sc: "Specialty",
|
|
t: "conv",
|
|
u: "https://theconversation.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "supermarket.chef.io",
|
|
r: 0,
|
|
s: "Chef Supermarket",
|
|
sc: "Sysadmin",
|
|
t: "coobook",
|
|
u: "https://supermarket.chef.io/cookbooks?utf8=%E2%9C%93&q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "supermarket.chef.io",
|
|
r: 0,
|
|
s: "Opscode community cookbooks",
|
|
sc: "Sysadmin",
|
|
t: "cookbook",
|
|
u: "https://supermarket.chef.io/cookbooks?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.cooks.com",
|
|
r: 0,
|
|
s: "Cooks.com",
|
|
sc: "Food",
|
|
t: "cook",
|
|
u: "http://www.cooks.com/?/q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "cooking.nytimes.com",
|
|
r: 0,
|
|
s: "NYT Cooking",
|
|
sc: "Food",
|
|
t: "cooking",
|
|
u: "https://cooking.nytimes.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "cookpad.com",
|
|
r: 0,
|
|
s: "Cookpad",
|
|
sc: "Food",
|
|
t: "cookpad",
|
|
u: "http://cookpad.com/search/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.cookscountry.com",
|
|
r: 0,
|
|
s: "Cook's Country",
|
|
sc: "Food",
|
|
t: "cooksc",
|
|
u: "http://www.cookscountry.com/search/?type=&q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.cooks.com",
|
|
r: 0,
|
|
s: "Cooks.com",
|
|
sc: "Food",
|
|
t: "cooks",
|
|
u: "http://www.cooks.com/rec/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.cooksillustrated.com",
|
|
r: 0,
|
|
s: "Cook's Illustrated",
|
|
sc: "Food",
|
|
t: "cooksi",
|
|
u: "http://www.cooksillustrated.com/search/results.asp?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.coolapk.com",
|
|
r: 0,
|
|
s: "Coolapk",
|
|
sc: "Downloads (apps)",
|
|
t: "Coolapk",
|
|
u: "https://www.coolapk.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.coolblue.be",
|
|
r: 0,
|
|
s: "Coolblue Belgi\u00eb",
|
|
sc: "Online",
|
|
t: "coolbluebe",
|
|
u: "https://www.coolblue.be/zoeken?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.coolblue.nl",
|
|
r: 6,
|
|
s: "Coolblue",
|
|
sc: "Online",
|
|
t: "coolblue",
|
|
u: "https://www.coolblue.nl/zoeken?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.coolblue.nl",
|
|
r: 0,
|
|
s: "Coolblue NL",
|
|
sc: "Online",
|
|
t: "coolbluenl",
|
|
u: "https://www.coolblue.nl/zoeken?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "cooljugator.com",
|
|
r: 0,
|
|
s: "CoolJugator Lithuanian",
|
|
sc: "Reference (words intl)",
|
|
t: "cool",
|
|
u: "http://cooljugator.com/lt/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.coolinarika.com",
|
|
r: 0,
|
|
s: "Coolinarika",
|
|
sc: "Social",
|
|
t: "coolinarika",
|
|
u: "https://www.coolinarika.com/recepti/pretrazivanje/?upit={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "duckduckgo.com",
|
|
r: 0,
|
|
s: "Cool Math Games",
|
|
sc: "Games (general)",
|
|
t: "coolmath",
|
|
u: "https://duckduckgo.com/?q=site%3Acoolmathgames.com+{{{s}}}&ia=web",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.coolshop.dk",
|
|
r: 0,
|
|
s: "Coolshop",
|
|
sc: "Online",
|
|
t: "coolshop",
|
|
u: "https://www.coolshop.dk/s/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.coolstuffinc.com",
|
|
r: 0,
|
|
s: "CoolStuffInc",
|
|
sc: "Online",
|
|
t: "coolstuffinc",
|
|
u: "http://www.coolstuffinc.com/main_search.php?pa=searchOnName&page=1&resultsPerPage=25&q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.coopathome.ch",
|
|
r: 0,
|
|
s: "Coop at Home",
|
|
sc: "Big box/department",
|
|
t: "coopathome",
|
|
u: "https://www.coopathome.ch/search/?text={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.coop.se",
|
|
r: 0,
|
|
s: "Coop",
|
|
sc: "Online",
|
|
t: "coop",
|
|
u: "https://www.coop.se/handla-online/sok/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.coop.ch",
|
|
r: 0,
|
|
s: "Coop (DE)",
|
|
sc: "Big box/department",
|
|
t: "coop_de",
|
|
u: "http://www.coop.ch/pb/site/search/search/2057/Lde/index.html?qs={{{s}}}&fr=coop2012&SuchButton.x=0&SuchButton.y=0&search=search&backend=backend_coop2012&la=de&_sid=4aea1684-910e-4741-9099-86fff3d8a570",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.coop.ch",
|
|
r: 0,
|
|
s: "Coop (FR)",
|
|
sc: "Big box/department",
|
|
t: "coop_fr",
|
|
u: "http://www.coop.ch/pb/site/search/search/2057/Lfr/index.html?qs={{{s}}}&fr=coop2012&SuchButton.x=0&SuchButton.y=0&search=search&backend=backend_coop2012&la=fr&_sid=2fae98df-7f08-49a8-86b5-38148b71ebdb",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.coop.ch",
|
|
r: 0,
|
|
s: "Coop (IT)",
|
|
sc: "Big box/department",
|
|
t: "coop_it",
|
|
u: "http://www.coop.ch/pb/site/search/search/2057/Lit/index.html?qs={{{s}}}&fr=coop2012&SuchButton.x=0&SuchButton.y=0&search=search&backend=backend_coop2012&la=it&_sid=537d493c-9c35-41dc-8881-d878b57e702f",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.coop.se",
|
|
r: 0,
|
|
s: "Coop Sweden",
|
|
sc: "Misc",
|
|
t: "coop_se",
|
|
u: "https://www.coop.se/Sok/Receptsok/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.xe.com",
|
|
r: 0,
|
|
s: "Xe.com",
|
|
sc: "Reference",
|
|
t: "cop2usd",
|
|
u: "http://www.xe.com/currencyconverter/convert/?From=COP&To=USD&Amount={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "copac.ac.uk",
|
|
r: 0,
|
|
s: "COPAC",
|
|
sc: "Academic",
|
|
t: "copac",
|
|
u: "http://copac.ac.uk/search?&title={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "coppermind.net",
|
|
r: 21,
|
|
s: "The Coppermind",
|
|
sc: "Misc",
|
|
t: "coppermind",
|
|
u: "http://coppermind.net/wiki/Special:Search?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "copr.fedoraproject.org",
|
|
r: 8,
|
|
s: "Fedora Copr",
|
|
sc: "Sysadmin (Fedora)",
|
|
t: "copr",
|
|
u: "http://copr.fedoraproject.org/coprs/fulltext/?fulltext={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "coptr.digipres.org",
|
|
r: 0,
|
|
s: "Community Owned digital Preservation Tool Registry (COPTR)",
|
|
sc: "Downloads (software)",
|
|
t: "coptr",
|
|
u: "http://coptr.digipres.org/index.php?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "coq.inria.fr",
|
|
r: 0,
|
|
s: "Coq",
|
|
sc: "Languages (other)",
|
|
t: "coq",
|
|
u: "https://coq.inria.fr/distrib/current/refman/search.html?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Translation",
|
|
d: "www.cornishdictionary.org.uk",
|
|
r: 5,
|
|
s: "Cornish-English Dictionary",
|
|
sc: "General",
|
|
t: "cor",
|
|
u: "https://www.cornishdictionary.org.uk/home?locale=en#{{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "plugins.cordova.io",
|
|
r: 0,
|
|
s: "Apache Cordova Plugins Registry",
|
|
sc: "Programming",
|
|
t: "cordovapl",
|
|
u: "http://plugins.cordova.io/#/search?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "core.ac.uk",
|
|
r: 0,
|
|
s: "CORE",
|
|
sc: "Academic",
|
|
t: "core",
|
|
u: "https://core.ac.uk/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "coronalabs.com",
|
|
r: 0,
|
|
s: "Corona",
|
|
sc: "Languages (lua)",
|
|
t: "corona",
|
|
u: "https://coronalabs.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "opencorporates.com",
|
|
r: 44,
|
|
s: "opencorporates",
|
|
sc: "Law",
|
|
t: "corp",
|
|
u: "https://opencorporates.com/companies?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.linkcorreios.com.br",
|
|
r: 0,
|
|
s: "Correios",
|
|
sc: "Tracking",
|
|
t: "correios",
|
|
u: "https://www.linkcorreios.com.br/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.correos.es",
|
|
r: 0,
|
|
s: "Localizados Correos de Espa\u00f1a",
|
|
sc: "Tools (URLs)",
|
|
t: "correos",
|
|
u: "http://www.correos.es/ss/Satellite/site/aplicacion-4000003383089-herramientas_y_apps/detalle_app-sidioma=es_ES?numero={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "sitesearch.corriere.it",
|
|
r: 0,
|
|
s: "Corriere della Sera",
|
|
sc: "International",
|
|
t: "corriere",
|
|
u: "http://sitesearch.corriere.it/forward.jsp?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "consequenceofsound.net",
|
|
r: 0,
|
|
s: "Consequence of Sound",
|
|
sc: "Audio",
|
|
t: "cos",
|
|
u: "http://consequenceofsound.net/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.cosdna.com",
|
|
r: 0,
|
|
s: "CosDNA (english)",
|
|
sc: "Health",
|
|
t: "cosdna",
|
|
u: "http://www.cosdna.com/eng/product.php?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.cosmoty.de",
|
|
r: 0,
|
|
s: "COSMOTY.de",
|
|
sc: "Magazine",
|
|
t: "cosmoty",
|
|
u: "http://www.cosmoty.de/suche/{{{s}}}/",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.costco.ca",
|
|
r: 0,
|
|
s: "Costco Canada",
|
|
sc: "Big box/department",
|
|
t: "costcoca",
|
|
u: "https://www.costco.ca/CatalogSearch?dept=All&keyword={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.costco.com",
|
|
r: 187,
|
|
s: "Costco.com",
|
|
sc: "Big box/department",
|
|
t: "costco",
|
|
u: "http://www.costco.com/CatalogSearch?storeId=10301&catalogId=10701&langId=-1&keyword={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "selfcater.com",
|
|
r: 0,
|
|
s: "Self Cater",
|
|
sc: "Travel",
|
|
t: "cottages",
|
|
u: "https://selfcater.com/find?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "cottrillcompass.com",
|
|
r: 0,
|
|
s: "Cottrill Compass blog",
|
|
sc: "Specialty",
|
|
t: "cottrillcompassblog",
|
|
u: "http://cottrillcompass.com/blog/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "coub.com",
|
|
r: 0,
|
|
s: "Coub",
|
|
sc: "Misc",
|
|
t: "coub",
|
|
u: "http://coub.com/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.couchsurfing.org",
|
|
r: 0,
|
|
s: "Couchsurfing",
|
|
sc: "Travel",
|
|
t: "couch",
|
|
u: "https://www.couchsurfing.org/?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "couleur-science.eu",
|
|
r: 0,
|
|
s: "Couleur Science",
|
|
sc: "Blogs",
|
|
t: "couleur",
|
|
u: "http://couleur-science.eu/index.php?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "cd.justinjc.com",
|
|
r: 0,
|
|
s: "Countdown",
|
|
sc: "Tools (URLs)",
|
|
t: "countdown",
|
|
u: "http://cd.justinjc.com/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.countrycode.org",
|
|
r: 0,
|
|
s: "CountryCode.org",
|
|
sc: "Search",
|
|
t: "country",
|
|
u: "https://www.countrycode.org/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.coupang.com",
|
|
r: 42,
|
|
s: "\ucfe0\ud321",
|
|
sc: "Online",
|
|
t: "coupang",
|
|
u: "https://www.coupang.com/np/search?component=&q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.couponcabin.com",
|
|
r: 0,
|
|
s: "CouponCabin",
|
|
sc: "Online (deals)",
|
|
t: "couponcabin",
|
|
u: "http://www.couponcabin.com/ps/{{{s}}}/1/",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.couponmeup.com",
|
|
r: 0,
|
|
s: "CouponMeUp",
|
|
sc: "Online (deals)",
|
|
t: "couponmeup",
|
|
u: "http://www.couponmeup.com/cgi-bin/display.pl?search=1&q={{{s}}} ",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.dealtaker.com",
|
|
r: 0,
|
|
s: "DealTaker",
|
|
sc: "Online (deals)",
|
|
t: "coupons",
|
|
u: "http://www.dealtaker.com/site/search?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Shopping",
|
|
d: "www.couponsurfer.com",
|
|
r: 0,
|
|
s: "CouponSurfer",
|
|
sc: "Online (deals)",
|
|
t: "couponsurfer",
|
|
u: "http://www.couponsurfer.com/coupon_search.cfm?q={{{s}}}",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.courant.com",
|
|
r: 0,
|
|
s: "Hartford Courant",
|
|
sc: "Newspaper",
|
|
t: "courant",
|
|
u: "http://www.courant.com/search/dispatcher.front?target=article&sortby=display_time++descending&Query={{{s}}} ",
|
|
},
|
|
{
|
|
c: "News",
|
|
d: "www.courrierinternational.com",
|
|
r: 0,
|
|
s: "Courrier International",
|
|
sc: "Aggregators",
|
|
t: "courrierint",
|
|
u: "http://www.courrierinternational.com/search/result/{{{s}}}",
|
|
},
|
|
{
|
|
c: "Research",
|
|
d: "www.coursera.org",
|
|
r: 4,
|
|
s: "Coursera",
|
|
sc: "Academic",
|
|
t: "coursera",
|
|
u: "https://www.coursera.org/search?query={{{s}}}",
|
|
},
|
|
{
|
|
c: "Entertainment",
|
|
d: "www.courttv.com",
|
|
r: 0,
|
|
s: "Court TV",
|
|
sc: "TV",
|
|
t: "courttv",
|
|
u: "https://www.courttv.com/?s={{{s}}}",
|
|
},
|
|
{
|
|
c: "Tech",
|
|
d: "www.coveo.com",
|
|
r: 0,
|
|
s: "Coveo",
|
|
sc: "Companies",
|
|
t: "coveo",
|
|
u: "http://www.coveo.com/en/search#q={{{s}}}",
|
|
},
|
|
{
|
|
c: "Online Services",
|
|
d: "www.covot.net",
|
|
r: 0,
|
|
s: "Covot Dictionary",
|
|
sc: "Search",
|
|
t: "covot",
|
|
u: "http://www.covot.net/dictionary?search={{{s}}}",
|
|
},
|
|
{
|
|
c: "Multimedia",
|
|
d: "www.cowboylyrics.com",
|
|
r: 0,
|
|
s: "Cowboy Lyrics",
|
|
sc: "Music",
|
|
t: "cowboylyrics",
|