123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566 |
- package goreferrer
- import (
- "strings"
- )
- var DefaultRules RuleSet
- func init() {
- domainRules, err := LoadJsonDomainRules(strings.NewReader(defaultRules))
- if err != nil {
- panic(err)
- }
- DefaultRules = RuleSet{
- DomainRules: domainRules,
- UaRules: map[string]UaRule{
- "Twitter": {
- Url: "twitter://twitter.com",
- Domain: "twitter",
- Tld: "com",
- },
- "Pinterest": {
- Url: "pinterest://pinterest.com",
- Domain: "pinterest",
- Tld: "com",
- },
- "Facebook": {
- Url: "facebook://facebook.com",
- Domain: "facebook",
- Tld: "com",
- },
- "FBAV": {
- Url: "facebook://facebook.com",
- Domain: "facebook",
- Tld: "com",
- },
- },
- }
- }
- const defaultRules = `
- {
- "email": {
- "126 Mail": {
- "domains": [
- "mail.126.com"
- ]
- },
- "163 Mail": {
- "domains": [
- "mail.163.com"
- ]
- },
- "2degrees": {
- "domains": [
- "webmail.2degreesbroadband.co.nz"
- ]
- },
- "Adam Internet": {
- "domains": [
- "webmail.adam.com.au"
- ]
- },
- "AOL Mail": {
- "domains": [
- "mail.aol.com",
- "cpw.mail.aol.com"
- ]
- },
- "Xfinity":{
- "domains": [
- "web.mail.comcast.net"
- ]
- },
- "Bigpond": {
- "domains": [
- "webmail.bigpond.com",
- "webmail2.bigpond.com",
- "email.telstra.com",
- "basic.messaging.bigpond.com"
- ]
- },
- "Commander": {
- "domains": [
- "webmail.commander.net.au"
- ]
- },
- "Daum Mail": {
- "domains": [
- "mail2.daum.net",
- "mail.daum.net"
- ]
- },
- "Dodo": {
- "domains": [
- "webmail.dodo.com.au"
- ]
- },
- "Freenet": {
- "domains": [
- "webmail.freenet.de"
- ]
- },
- "Gmail": {
- "domains": [
- "mail.google.com",
- "inbox.google.com"
- ]
- },
- "iiNet": {
- "domains": [
- "webmail.iinet.net.au",
- "mail.iinet.net.au"
- ]
- },
- "Inbox.com": {
- "domains": [
- "inbox.com"
- ]
- },
- "iPrimus": {
- "domains": [
- "webmail.iprimus.com.au"
- ]
- },
- "Naver Mail": {
- "domains": [
- "mail.naver.com"
- ]
- },
- "Netspace": {
- "domains": [
- "webmail.netspace.net.au"
- ]
- },
- "Optus Zoo": {
- "domains": [
- "webmail.optuszoo.com.au",
- "webmail.optusnet.com.au"
- ]
- },
- "Orange Webmail": {
- "domains": [
- "orange.fr/webmail"
- ]
- },
- "Outlook.com": {
- "domains": [
- "mail.live.com",
- "outlook.live.com",
- "blu180.mail.live.com",
- "col130.mail.live.com",
- "blu184.mail.live.com",
- "bay179.mail.live.com",
- "col131.mail.live.com",
- "blu179.mail.live.com",
- "bay180.mail.live.com",
- "blu182.mail.live.com",
- "blu181.mail.live.com",
- "bay182.mail.live.com",
- "snt149.mail.live.com",
- "bay181.mail.live.com",
- "col129.mail.live.com",
- "snt148.mail.live.com",
- "snt147.mail.live.com",
- "snt146.mail.live.com",
- "snt153.mail.live.com",
- "snt152.mail.live.com",
- "snt150.mail.live.com",
- "snt151.mail.live.com",
- "col128.mail.live.com",
- "blu185.mail.live.com",
- "dub125.mail.live.com",
- "dub128.mail.live.com",
- "dub127.mail.live.com",
- "dub131.mail.live.com",
- "col125.mail.live.com",
- "dub130.mail.live.com",
- "blu172.mail.live.com",
- "bay169.mail.live.com",
- "blu175.mail.live.com",
- "blu173.mail.live.com",
- "bay176.mail.live.com",
- "blu176.mail.live.com",
- "col126.mail.live.com",
- "col127.mail.live.com",
- "blu177.mail.live.com",
- "blu174.mail.live.com",
- "bay174.mail.live.com",
- "bay172.mail.live.com",
- "blu169.mail.live.com",
- "bay177.mail.live.com",
- "blu178.mail.live.com",
- "blu171.mail.live.com",
- "dub126.mail.live.com",
- "blu168.mail.live.com",
- "bay173.mail.live.com",
- "bay175.mail.live.com",
- "bay178.mail.live.com",
- "bay168.mail.live.com",
- "bay167.mail.live.com",
- "blu170.mail.live.com",
- "dub124.mail.live.com",
- "dub122.mail.live.com",
- "dub121.mail.live.com",
- "dub129.mail.live.com",
- "dub114.mail.live.com",
- "dub110.mail.live.com",
- "dub111.mail.live.com",
- "dub113.mail.live.com",
- "dub109.mail.live.com",
- "dub120.mail.live.com",
- "dub115.mail.live.com",
- "dub123.mail.live.com",
- "dub119.mail.live.com",
- "dub118.mail.live.com",
- "dub112.mail.live.com",
- "dub117.mail.live.com",
- "dub116.mail.live.com",
- "blu183.mail.live.com"
- ]
- },
- "QQ Mail": {
- "domains": [
- "mail.qq.com"
- ]
- },
- "Seznam Mail": {
- "domains": [
- "email.seznam.cz"
- ]
- },
- "Virgin": {
- "domains": [
- "webmail.virginbroadband.com.au"
- ]
- },
- "Vodafone": {
- "domains": [
- "webmail.vodafone.co.nz"
- ]
- },
- "Westnet": {
- "domains": [
- "webmail.westnet.com.au"
- ]
- },
- "Yahoo! Mail": {
- "domains": [
- "mail.yahoo.net",
- "mail.yahoo.com",
- "mail.yahoo.co.uk",
- "mail.yahoo.co.jp"
- ]
- },
- "Mynet Mail": {
- "domains": [
- "mail.mynet.com"
- ]
- },
- "Zoho": {
- "domains": [
- "mail.zoho.com"
- ]
- },
- "MailChimp": {
- "domains": [
- "list-manage.com",
- "list-manage1.com",
- "list-manage2.com",
- "list-manage3.com",
- "list-manage4.com",
- "list-manage5.com",
- "list-manage6.com",
- "list-manage7.com",
- "list-manage8.com",
- "list-manage9.com"
- ]
- }
- },
- "search": {
- "1.cz": {
- "domains": [
- "1.cz"
- ],
- "parameters": [
- "q"
- ]
- },
- "1&1": {
- "domains": [
- "search.1and1.com"
- ],
- "parameters": [
- "q"
- ]
- },
- "1und1": {
- "domains": [
- "search.1und1.de"
- ],
- "parameters": [
- "su"
- ]
- },
- "360.cn": {
- "domains": [
- "so.360.cn",
- "www.so.com"
- ],
- "parameters": [
- "q"
- ]
- },
- "ABCs\u00f8k": {
- "domains": [
- "abcsolk.no",
- "verden.abcsok.no"
- ],
- "parameters": [
- "q"
- ]
- },
- "AOL": {
- "domains": [
- "m.search.aol.com",
- "search.aol.ca",
- "www.aol.com",
- "search.aol.com",
- "search.aol.it",
- "aolsearch.aol.com",
- "aolsearch.com",
- "www.aolrecherche.aol.fr",
- "www.aolrecherches.aol.fr",
- "www.aolimages.aol.fr",
- "aim.search.aol.com",
- "www.recherche.aol.fr",
- "recherche.aol.fr",
- "find.web.aol.com",
- "recherche.aol.ca",
- "aolsearch.aol.co.uk",
- "search.aol.co.uk",
- "aolrecherche.aol.fr",
- "sucheaol.aol.de",
- "suche.aol.de",
- "suche.aolsvc.de",
- "aolbusqueda.aol.com.mx",
- "alicesuche.aol.de",
- "alicesuchet.aol.de",
- "suchet2.aol.de",
- "search.hp.my.aol.com.au",
- "search.hp.my.aol.de",
- "search.hp.my.aol.it",
- "search-intl.netscape.com"
- ],
- "parameters": [
- "q",
- "query"
- ]
- },
- "APOLL07": {
- "domains": [
- "apollo7.de"
- ],
- "parameters": [
- "query"
- ]
- },
- "Abacho": {
- "domains": [
- "www.abacho.de",
- "www.abacho.com",
- "www.abacho.co.uk",
- "www.se.abacho.com",
- "www.tr.abacho.com",
- "www.abacho.at",
- "www.abacho.fr",
- "www.abacho.es",
- "www.abacho.ch",
- "www.abacho.it"
- ],
- "parameters": [
- "q"
- ]
- },
- "Acoon": {
- "domains": [
- "www.acoon.de"
- ],
- "parameters": [
- "begriff"
- ]
- },
- "Alexa": {
- "domains": [
- "alexa.com",
- "search.toolbars.alexa.com"
- ],
- "parameters": [
- "q"
- ]
- },
- "Alice Adsl": {
- "domains": [
- "rechercher.aliceadsl.fr"
- ],
- "parameters": [
- "q"
- ]
- },
- "AllTheWeb": {
- "domains": [
- "www.alltheweb.com"
- ],
- "parameters": [
- "q"
- ]
- },
- "Altavista": {
- "domains": [
- "www.altavista.com",
- "search.altavista.com",
- "listings.altavista.com",
- "altavista.de",
- "altavista.fr",
- "be-nl.altavista.com",
- "be-fr.altavista.com"
- ],
- "parameters": [
- "q"
- ]
- },
- "Apollo Latvia": {
- "domains": [
- "apollo.lv/portal/search/"
- ],
- "parameters": [
- "q"
- ]
- },
- "Amazon": {
- "domains": [
- "amazon.com",
- "amazon.co.uk",
- "amazon.ca",
- "amazon.de",
- "amazon.fr",
- "amazonaws.com",
- "amazon.co.jp",
- "amazon.es",
- "amazon.it",
- "amazon.in",
- "www.amazon.com"
- ],
- "parameters": [
- "keywords",
- "field-keywords"
- ]
- },
- "Apontador": {
- "domains": [
- "apontador.com.br",
- "www.apontador.com.br"
- ],
- "parameters": [
- "q"
- ]
- },
- "Aport": {
- "domains": [
- "sm.aport.ru"
- ],
- "parameters": [
- "r"
- ]
- },
- "Arcor": {
- "domains": [
- "www.arcor.de"
- ],
- "parameters": [
- "Keywords"
- ]
- },
- "Arianna": {
- "domains": [
- "arianna.libero.it",
- "www.arianna.com"
- ],
- "parameters": [
- "query"
- ]
- },
- "Ask": {
- "domains": [
- "ask.com",
- "www.ask.com",
- "web.ask.com",
- "int.ask.com",
- "mws.ask.com",
- "uk.ask.com",
- "images.ask.com",
- "ask.reference.com",
- "www.askkids.com",
- "iwon.ask.com",
- "www.ask.co.uk",
- "www.qbyrd.com",
- "search-results.com",
- "uk.search-results.com",
- "www.search-results.com",
- "int.search-results.com"
- ],
- "parameters": [
- "q"
- ]
- },
- "Ask Toolbar": {
- "domains": [
- "search.tb.ask.com"
- ],
- "parameters": [
- "searchfor"
- ]
- },
- "Atlas": {
- "domains": [
- "searchatlas.centrum.cz"
- ],
- "parameters": [
- "q"
- ]
- },
- "Austronaut": {
- "domains": [
- "www2.austronaut.at",
- "www1.astronaut.at"
- ],
- "parameters": [
- "q"
- ]
- },
- "Babylon": {
- "domains": [
- "search.babylon.com",
- "searchassist.babylon.com"
- ],
- "parameters": [
- "q"
- ]
- },
- "Baidu": {
- "domains": [
- "www.baidu.com",
- "www1.baidu.com",
- "zhidao.baidu.com",
- "tieba.baidu.com",
- "news.baidu.com",
- "web.gougou.com",
- "m.baidu.com",
- "image.baidu.com",
- "tieba.baidu.com",
- "fanyi.baidu.com",
- "zhidao.baidu.com",
- "www.baidu.co.th",
- "m5.baidu.com",
- "m.siteapp.baidu.com"
- ],
- "parameters": [
- "wd",
- "word",
- "kw",
- "k"
- ]
- },
- "Biglobe": {
- "domains": [
- "cgi.search.biglobe.ne.jp"
- ],
- "parameters": [
- "q"
- ]
- },
- "Bing": {
- "domains": [
- "bing.com",
- "www.bing.com",
- "msnbc.msn.com",
- "dizionario.it.msn.com",
- "cc.bingj.com",
- "m.bing.com"
- ],
- "parameters": [
- "q",
- "Q"
- ]
- },
- "Bing Images": {
- "domains": [
- "bing.com/images/search",
- "www.bing.com/images/search"
- ],
- "parameters": [
- "q",
- "Q"
- ]
- },
- "Blogdigger": {
- "domains": [
- "www.blogdigger.com"
- ],
- "parameters": [
- "q"
- ]
- },
- "Blogpulse": {
- "domains": [
- "www.blogpulse.com"
- ],
- "parameters": [
- "query"
- ]
- },
- "Bluewin": {
- "domains": [
- "search.bluewin.ch"
- ],
- "parameters": [
- "searchTerm"
- ]
- },
- "British Telecommunications": {
- "domains": [
- "search.bt.com"
- ],
- "parameters": [
- "q"
- ]
- },
- "Centrum": {
- "domains": [
- "serach.centrum.cz",
- "morfeo.centrum.cz"
- ],
- "parameters": [
- "q"
- ]
- },
- "Certified-Toolbar": {
- "domains": [
- "search.certified-toolbar.com"
- ],
- "parameters": [
- "q"
- ]
- },
- "Charter": {
- "domains": [
- "www.charter.net"
- ],
- "parameters": [
- "q"
- ]
- },
- "Clix": {
- "domains": [
- "pesquisa.clix.pt"
- ],
- "parameters": [
- "question"
- ]
- },
- "Comcast": {
- "domains": [
- "search.comcast.net",
- "comcast.net",
- "xfinity.com"
- ],
- "parameters": [
- "q"
- ]
- },
- "Compuserve": {
- "domains": [
- "websearch.cs.com"
- ],
- "parameters": [
- "query"
- ]
- },
- "Conduit": {
- "domains": [
- "search.conduit.com"
- ],
- "parameters": [
- "q"
- ]
- },
- "Crawler": {
- "domains": [
- "www.crawler.com"
- ],
- "parameters": [
- "q"
- ]
- },
- "Cuil": {
- "domains": [
- "www.cuil.com"
- ],
- "parameters": [
- "q"
- ]
- },
- "Daemon search": {
- "domains": [
- "daemon-search.com",
- "my.daemon-search.com"
- ],
- "parameters": [
- "q"
- ]
- },
- "Dalesearch": {
- "domains": [
- "www.dalesearch.com"
- ],
- "parameters": [
- "q"
- ]
- },
- "DasOertliche": {
- "domains": [
- "www.dasoertliche.de"
- ],
- "parameters": [
- "kw"
- ]
- },
- "DasTelefonbuch": {
- "domains": [
- "www1.dastelefonbuch.de"
- ],
- "parameters": [
- "kw"
- ]
- },
- "Daum": {
- "domains": [
- "search.daum.net"
- ],
- "parameters": [
- "q"
- ]
- },
- "Delfi": {
- "domains": [
- "otsing.delfi.ee"
- ],
- "parameters": [
- "q"
- ]
- },
- "Delfi latvia": {
- "domains": [
- "smart.delfi.lv"
- ],
- "parameters": [
- "q"
- ]
- },
- "Digg": {
- "domains": [
- "digg.com"
- ],
- "parameters": [
- "s"
- ]
- },
- "Dodo": {
- "domains": [
- "google.dodo.com.au"
- ],
- "parameters": [
- "q"
- ]
- },
- "DuckDuckGo": {
- "domains": [
- "duckduckgo.com"
- ],
- "parameters": [
- "q"
- ]
- },
- "Ecosia": {
- "domains": [
- "ecosia.org"
- ],
- "parameters": [
- "q"
- ]
- },
- "El Mundo": {
- "domains": [
- "ariadna.elmundo.es"
- ],
- "parameters": [
- "q"
- ]
- },
- "Eniro": {
- "domains": [
- "www.eniro.se"
- ],
- "parameters": [
- "q",
- "search_word"
- ]
- },
- "Eurip": {
- "domains": [
- "www.eurip.com"
- ],
- "parameters": [
- "q"
- ]
- },
- "Euroseek": {
- "domains": [
- "www.euroseek.com"
- ],
- "parameters": [
- "string"
- ]
- },
- "Everyclick": {
- "domains": [
- "www.everyclick.com"
- ],
- "parameters": [
- "keyword"
- ]
- },
- "Exalead": {
- "domains": [
- "www.exalead.fr",
- "www.exalead.com"
- ],
- "parameters": [
- "q"
- ]
- },
- "Excite": {
- "domains": [
- "search.excite.it",
- "search.excite.fr",
- "search.excite.de",
- "search.excite.co.uk",
- "serach.excite.es",
- "search.excite.nl",
- "msxml.excite.com",
- "www.excite.co.jp"
- ],
- "parameters": [
- "q",
- "search"
- ]
- },
- "Fast Browser Search": {
- "domains": [
- "www.fastbrowsersearch.com"
- ],
- "parameters": [
- "q"
- ]
- },
- "Finderoo": {
- "domains": [
- "www.finderoo.com"
- ],
- "parameters": [
- "q"
- ]
- },
- "Findwide": {
- "domains": [
- "search.findwide.com"
- ],
- "parameters": [
- "k"
- ]
- },
- "Fireball": {
- "domains": [
- "www.fireball.de"
- ],
- "parameters": [
- "q"
- ]
- },
- "Firstfind": {
- "domains": [
- "www.firstsfind.com"
- ],
- "parameters": [
- "qry"
- ]
- },
- "Fixsuche": {
- "domains": [
- "www.fixsuche.de"
- ],
- "parameters": [
- "q"
- ]
- },
- "Flix": {
- "domains": [
- "www.flix.de"
- ],
- "parameters": [
- "keyword"
- ]
- },
- "Flyingbird": {
- "domains": [
- "inspsearch.com"
- ],
- "parameters": [
- "q"
- ]
- },
- "Forestle": {
- "domains": [
- "forestle.org",
- "www.forestle.org",
- "forestle.mobi"
- ],
- "parameters": [
- "q"
- ]
- },
- "Francite": {
- "domains": [
- "recherche.francite.com"
- ],
- "parameters": [
- "name"
- ]
- },
- "Free": {
- "domains": [
- "search.free.fr",
- "search1-2.free.fr",
- "search1-1.free.fr"
- ],
- "parameters": [
- "q"
- ]
- },
- "Freecause": {
- "domains": [
- "search.freecause.com"
- ],
- "parameters": [
- "p"
- ]
- },
- "Freenet": {
- "domains": [
- "suche.freenet.de"
- ],
- "parameters": [
- "query",
- "Keywords"
- ]
- },
- "Freshweather": {
- "domains": [
- "www.fresh-weather.com"
- ],
- "parameters": [
- "q"
- ]
- },
- "FriendFeed": {
- "domains": [
- "friendfeed.com"
- ],
- "parameters": [
- "q"
- ]
- },
- "GAIS": {
- "domains": [
- "gais.cs.ccu.edu.tw"
- ],
- "parameters": [
- "q"
- ]
- },
- "GMX": {
- "domains": [
- "suche.gmx.net"
- ],
- "parameters": [
- "su"
- ]
- },
- "Geona": {
- "domains": [
- "geona.net"
- ],
- "parameters": [
- "q"
- ]
- },
- "Genieo": {
- "domains": [
- "search.genieo.com"
- ],
- "parameters": [
- "q"
- ]
- },
- "Gigablast": {
- "domains": [
- "www.gigablast.com",
- "dir.gigablast.com"
- ],
- "parameters": [
- "q"
- ]
- },
- "Globososo": {
- "domains": [
- "searches.globososo.com",
- "search.globososo.com"
- ],
- "parameters": [
- "q"
- ]
- },
- "Gnadenmeer": {
- "domains": [
- "www.gnadenmeer.de"
- ],
- "parameters": [
- "keyword"
- ]
- },
- "Gomeo": {
- "domains": [
- "www.gomeo.com"
- ],
- "parameters": [
- "Keywords"
- ]
- },
- "Google": {
- "domains": [
- "www.google.com",
- "www.google.ac",
- "www.google.ad",
- "www.google.al",
- "www.google.com.af",
- "www.google.com.ag",
- "www.google.com.ai",
- "www.google.am",
- "www.google.it.ao",
- "www.google.com.ar",
- "www.google.as",
- "www.google.at",
- "www.google.com.au",
- "www.google.az",
- "www.google.ba",
- "www.google.com.bd",
- "www.google.be",
- "www.google.bf",
- "www.google.bg",
- "www.google.com.bh",
- "www.google.bi",
- "www.google.bj",
- "www.google.com.bn",
- "www.google.com.bo",
- "www.google.com.br",
- "www.google.bs",
- "www.google.co.bw",
- "www.google.com.by",
- "www.google.by",
- "www.google.com.bz",
- "www.google.ca",
- "www.google.com.kh",
- "www.google.cc",
- "www.google.cd",
- "www.google.cf",
- "www.google.cat",
- "www.google.cg",
- "www.google.ch",
- "www.google.ci",
- "www.google.co.ck",
- "www.google.cl",
- "www.google.cm",
- "www.google.cn",
- "www.google.com.co",
- "www.google.co.cr",
- "www.google.com.cu",
- "www.google.cv",
- "www.google.com.cy",
- "www.google.cz",
- "www.google.de",
- "www.google.dj",
- "www.google.dk",
- "www.google.dm",
- "www.google.com.do",
- "www.google.dz",
- "www.google.com.ec",
- "www.google.ee",
- "www.google.com.eg",
- "www.google.es",
- "www.google.com.et",
- "www.google.fi",
- "www.google.com.fj",
- "www.google.fm",
- "www.google.fr",
- "www.google.ga",
- "www.google.gd",
- "www.google.ge",
- "www.google.gf",
- "www.google.gg",
- "www.google.com.gh",
- "www.google.com.gi",
- "www.google.gl",
- "www.google.gm",
- "www.google.gp",
- "www.google.gr",
- "www.google.com.gt",
- "www.google.gy",
- "www.google.com.hk",
- "www.google.hn",
- "www.google.hr",
- "www.google.ht",
- "www.google.hu",
- "www.google.co.id",
- "www.google.iq",
- "www.google.ie",
- "www.google.co.il",
- "www.google.im",
- "www.google.co.in",
- "www.google.io",
- "www.google.is",
- "www.google.it",
- "www.google.je",
- "www.google.com.jm",
- "www.google.jo",
- "www.google.co.jp",
- "www.google.co.ke",
- "www.google.com.kh",
- "www.google.ki",
- "www.google.kg",
- "www.google.co.kr",
- "www.google.com.kw",
- "www.google.kz",
- "www.google.la",
- "www.google.com.lb",
- "www.google.com.lc",
- "www.google.li",
- "www.google.lk",
- "www.google.co.ls",
- "www.google.lt",
- "www.google.lu",
- "www.google.lv",
- "www.google.com.ly",
- "www.google.co.ma",
- "www.google.md",
- "www.google.me",
- "www.google.mg",
- "www.google.mk",
- "www.google.ml",
- "www.google.mn",
- "www.google.ms",
- "www.google.com.mt",
- "www.google.mu",
- "www.google.mv",
- "www.google.mw",
- "www.google.com.mx",
- "www.google.com.my",
- "www.google.co.mz",
- "www.google.com.na",
- "www.google.ne",
- "www.google.com.nf",
- "www.google.com.ng",
- "www.google.com.ni",
- "www.google.nl",
- "www.google.no",
- "www.google.com.np",
- "www.google.nr",
- "www.google.nu",
- "www.google.co.nz",
- "www.google.com.om",
- "www.google.com.pa",
- "www.google.com.pe",
- "www.google.com.ph",
- "www.google.com.pk",
- "www.google.pl",
- "www.google.pn",
- "www.google.com.pr",
- "www.google.ps",
- "www.google.pt",
- "www.google.com.py",
- "www.google.com.qa",
- "www.google.ro",
- "www.google.rs",
- "www.google.ru",
- "www.google.rw",
- "www.google.com.sa",
- "www.google.com.sb",
- "www.google.sc",
- "www.google.se",
- "www.google.com.sg",
- "www.google.sh",
- "www.google.si",
- "www.google.sk",
- "www.google.com.sl",
- "www.google.sn",
- "www.google.sm",
- "www.google.so",
- "www.google.st",
- "www.google.com.sv",
- "www.google.td",
- "www.google.tg",
- "www.google.co.th",
- "www.google.com.tj",
- "www.google.tk",
- "www.google.tl",
- "www.google.tm",
- "www.google.to",
- "www.google.com.tn",
- "www.google.com.tr",
- "www.google.tt",
- "www.google.tn",
- "www.google.com.tw",
- "www.google.co.tz",
- "www.google.com.ua",
- "www.google.co.ug",
- "www.google.ae",
- "www.google.co.uk",
- "www.google.us",
- "www.google.com.uy",
- "www.google.co.uz",
- "www.google.com.vc",
- "www.google.co.ve",
- "www.google.vg",
- "www.google.co.vi",
- "www.google.com.vn",
- "www.google.vu",
- "www.google.ws",
- "www.google.co.za",
- "www.google.co.zm",
- "www.google.co.zw",
- "www.google.com.mm",
- "www.google.sr",
- "www.google.com.pg",
- "www.google.bt",
- "www.google.ng",
- "www.google.com.iq",
- "www.google.co.ao",
- "google.com",
- "google.ac",
- "google.ad",
- "google.al",
- "google.com.af",
- "google.com.ag",
- "google.com.ai",
- "google.am",
- "google.it.ao",
- "google.com.ar",
- "google.as",
- "google.at",
- "google.com.au",
- "google.az",
- "google.ba",
- "google.com.bd",
- "google.be",
- "google.bf",
- "google.bg",
- "google.com.bh",
- "google.bi",
- "google.bj",
- "google.com.bn",
- "google.com.bo",
- "google.com.br",
- "google.bs",
- "google.co.bw",
- "google.com.by",
- "google.by",
- "google.com.bz",
- "google.ca",
- "google.com.kh",
- "google.cc",
- "google.cd",
- "google.cf",
- "google.cat",
- "google.cg",
- "google.ch",
- "google.ci",
- "google.co.ck",
- "google.cl",
- "google.cm",
- "google.cn",
- "google.com.co",
- "google.co.cr",
- "google.com.cu",
- "google.cv",
- "google.com.cy",
- "google.cz",
- "google.de",
- "google.dj",
- "google.dk",
- "google.dm",
- "google.com.do",
- "google.dz",
- "google.com.ec",
- "google.ee",
- "google.com.eg",
- "google.es",
- "google.com.et",
- "google.fi",
- "google.com.fj",
- "google.fm",
- "google.fr",
- "google.ga",
- "google.gd",
- "google.ge",
- "google.gf",
- "google.gg",
- "google.com.gh",
- "google.com.gi",
- "google.gl",
- "google.gm",
- "google.gp",
- "google.gr",
- "google.com.gt",
- "google.gy",
- "google.com.hk",
- "google.hn",
- "google.hr",
- "google.ht",
- "google.hu",
- "google.co.id",
- "google.iq",
- "google.ie",
- "google.co.il",
- "google.im",
- "google.co.in",
- "google.io",
- "google.is",
- "google.it",
- "google.je",
- "google.com.jm",
- "google.jo",
- "google.co.jp",
- "google.co.ke",
- "google.com.kh",
- "google.ki",
- "google.kg",
- "google.co.kr",
- "google.com.kw",
- "google.kz",
- "google.la",
- "google.com.lb",
- "google.com.lc",
- "google.li",
- "google.lk",
- "google.co.ls",
- "google.lt",
- "google.lu",
- "google.lv",
- "google.com.ly",
- "google.co.ma",
- "google.md",
- "google.me",
- "google.mg",
- "google.mk",
- "google.ml",
- "google.mn",
- "google.ms",
- "google.com.mt",
- "google.mu",
- "google.mv",
- "google.mw",
- "google.com.mx",
- "google.com.my",
- "google.co.mz",
- "google.com.na",
- "google.ne",
- "google.com.nf",
- "google.com.ng",
- "google.com.ni",
- "google.nl",
- "google.no",
- "google.com.np",
- "google.nr",
- "google.nu",
- "google.co.nz",
- "google.com.om",
- "google.com.pa",
- "google.com.pe",
- "google.com.ph",
- "google.com.pk",
- "google.pl",
- "google.pn",
- "google.com.pr",
- "google.ps",
- "google.pt",
- "google.com.py",
- "google.com.qa",
- "google.ro",
- "google.rs",
- "google.ru",
- "google.rw",
- "google.com.sa",
- "google.com.sb",
- "google.sc",
- "google.se",
- "google.com.sg",
- "google.sh",
- "google.si",
- "google.sk",
- "google.com.sl",
- "google.sn",
- "google.sm",
- "google.so",
- "google.st",
- "google.com.sv",
- "google.td",
- "google.tg",
- "google.tn",
- "google.co.th",
- "google.com.tj",
- "google.tk",
- "google.tl",
- "google.tm",
- "google.to",
- "google.com.tn",
- "google.com.tr",
- "google.tt",
- "google.com.tw",
- "google.co.tz",
- "google.com.ua",
- "google.co.ug",
- "google.ae",
- "google.co.uk",
- "google.us",
- "google.com.uy",
- "google.co.uz",
- "google.com.vc",
- "google.co.ve",
- "google.vg",
- "google.co.vi",
- "google.com.vn",
- "google.vu",
- "google.ws",
- "google.co.za",
- "google.co.zm",
- "google.co.zw",
- "search.avg.com",
- "isearch.avg.com",
- "www.cnn.com",
- "darkoogle.com",
- "search.darkoogle.com",
- "search.foxtab.com",
- "www.gooofullsearch.com",
- "search.hiyo.com",
- "search.incredimail.com",
- "search1.incredimail.com",
- "search2.incredimail.com",
- "search3.incredimail.com",
- "search4.incredimail.com",
- "search.incredibar.com",
- "search.sweetim.com",
- "www.fastweb.it",
- "search.juno.com",
- "find.tdc.dk",
- "searchresults.verizon.com",
- "search.walla.co.il",
- "search.alot.com",
- "www.googleearth.de",
- "www.googleearth.fr",
- "webcache.googleusercontent.com",
- "encrypted.google.com",
- "googlesyndicatedsearch.com",
- "www.googleadservices.com"
- ],
- "parameters": [
- "q",
- "query",
- "Keywords",
- "*"
- ]
- },
- "Google Blogsearch": {
- "domains": [
- "blogsearch.google.ac",
- "blogsearch.google.ad",
- "blogsearch.google.ae",
- "blogsearch.google.am",
- "blogsearch.google.as",
- "blogsearch.google.at",
- "blogsearch.google.az",
- "blogsearch.google.ba",
- "blogsearch.google.be",
- "blogsearch.google.bf",
- "blogsearch.google.bg",
- "blogsearch.google.bi",
- "blogsearch.google.bj",
- "blogsearch.google.bs",
- "blogsearch.google.by",
- "blogsearch.google.ca",
- "blogsearch.google.cat",
- "blogsearch.google.cc",
- "blogsearch.google.cd",
- "blogsearch.google.cf",
- "blogsearch.google.cg",
- "blogsearch.google.ch",
- "blogsearch.google.ci",
- "blogsearch.google.cl",
- "blogsearch.google.cm",
- "blogsearch.google.cn",
- "blogsearch.google.co.bw",
- "blogsearch.google.co.ck",
- "blogsearch.google.co.cr",
- "blogsearch.google.co.id",
- "blogsearch.google.co.il",
- "blogsearch.google.co.in",
- "blogsearch.google.co.jp",
- "blogsearch.google.co.ke",
- "blogsearch.google.co.kr",
- "blogsearch.google.co.ls",
- "blogsearch.google.co.ma",
- "blogsearch.google.co.mz",
- "blogsearch.google.co.nz",
- "blogsearch.google.co.th",
- "blogsearch.google.co.tz",
- "blogsearch.google.co.ug",
- "blogsearch.google.co.uk",
- "blogsearch.google.co.uz",
- "blogsearch.google.co.ve",
- "blogsearch.google.co.vi",
- "blogsearch.google.co.za",
- "blogsearch.google.co.zm",
- "blogsearch.google.co.zw",
- "blogsearch.google.com",
- "blogsearch.google.com.af",
- "blogsearch.google.com.ag",
- "blogsearch.google.com.ai",
- "blogsearch.google.com.ar",
- "blogsearch.google.com.au",
- "blogsearch.google.com.bd",
- "blogsearch.google.com.bh",
- "blogsearch.google.com.bn",
- "blogsearch.google.com.bo",
- "blogsearch.google.com.br",
- "blogsearch.google.com.by",
- "blogsearch.google.com.bz",
- "blogsearch.google.com.co",
- "blogsearch.google.com.cu",
- "blogsearch.google.com.cy",
- "blogsearch.google.com.do",
- "blogsearch.google.com.ec",
- "blogsearch.google.com.eg",
- "blogsearch.google.com.et",
- "blogsearch.google.com.fj",
- "blogsearch.google.com.gh",
- "blogsearch.google.com.gi",
- "blogsearch.google.com.gt",
- "blogsearch.google.com.hk",
- "blogsearch.google.com.jm",
- "blogsearch.google.com.kh",
- "blogsearch.google.com.kh",
- "blogsearch.google.com.kw",
- "blogsearch.google.com.lb",
- "blogsearch.google.com.lc",
- "blogsearch.google.com.ly",
- "blogsearch.google.com.mt",
- "blogsearch.google.com.mx",
- "blogsearch.google.com.my",
- "blogsearch.google.com.na",
- "blogsearch.google.com.nf",
- "blogsearch.google.com.ng",
- "blogsearch.google.com.ni",
- "blogsearch.google.com.np",
- "blogsearch.google.com.om",
- "blogsearch.google.com.pa",
- "blogsearch.google.com.pe",
- "blogsearch.google.com.ph",
- "blogsearch.google.com.pk",
- "blogsearch.google.com.pr",
- "blogsearch.google.com.py",
- "blogsearch.google.com.qa",
- "blogsearch.google.com.sa",
- "blogsearch.google.com.sb",
- "blogsearch.google.com.sg",
- "blogsearch.google.com.sl",
- "blogsearch.google.com.sv",
- "blogsearch.google.com.tj",
- "blogsearch.google.com.tn",
- "blogsearch.google.com.tr",
- "blogsearch.google.com.tw",
- "blogsearch.google.com.ua",
- "blogsearch.google.com.uy",
- "blogsearch.google.com.vc",
- "blogsearch.google.com.vn",
- "blogsearch.google.cv",
- "blogsearch.google.cz",
- "blogsearch.google.de",
- "blogsearch.google.dj",
- "blogsearch.google.dk",
- "blogsearch.google.dm",
- "blogsearch.google.dz",
- "blogsearch.google.ee",
- "blogsearch.google.es",
- "blogsearch.google.fi",
- "blogsearch.google.fm",
- "blogsearch.google.fr",
- "blogsearch.google.ga",
- "blogsearch.google.gd",
- "blogsearch.google.ge",
- "blogsearch.google.gf",
- "blogsearch.google.gg",
- "blogsearch.google.gl",
- "blogsearch.google.gm",
- "blogsearch.google.gp",
- "blogsearch.google.gr",
- "blogsearch.google.gy",
- "blogsearch.google.hn",
- "blogsearch.google.hr",
- "blogsearch.google.ht",
- "blogsearch.google.hu",
- "blogsearch.google.ie",
- "blogsearch.google.im",
- "blogsearch.google.io",
- "blogsearch.google.iq",
- "blogsearch.google.is",
- "blogsearch.google.it",
- "blogsearch.google.it.ao",
- "blogsearch.google.je",
- "blogsearch.google.jo",
- "blogsearch.google.kg",
- "blogsearch.google.ki",
- "blogsearch.google.kz",
- "blogsearch.google.la",
- "blogsearch.google.li",
- "blogsearch.google.lk",
- "blogsearch.google.lt",
- "blogsearch.google.lu",
- "blogsearch.google.lv",
- "blogsearch.google.md",
- "blogsearch.google.me",
- "blogsearch.google.mg",
- "blogsearch.google.mk",
- "blogsearch.google.ml",
- "blogsearch.google.mn",
- "blogsearch.google.ms",
- "blogsearch.google.mu",
- "blogsearch.google.mv",
- "blogsearch.google.mw",
- "blogsearch.google.ne",
- "blogsearch.google.nl",
- "blogsearch.google.no",
- "blogsearch.google.nr",
- "blogsearch.google.nu",
- "blogsearch.google.pl",
- "blogsearch.google.pn",
- "blogsearch.google.ps",
- "blogsearch.google.pt",
- "blogsearch.google.ro",
- "blogsearch.google.rs",
- "blogsearch.google.ru",
- "blogsearch.google.rw",
- "blogsearch.google.sc",
- "blogsearch.google.se",
- "blogsearch.google.sh",
- "blogsearch.google.si",
- "blogsearch.google.sk",
- "blogsearch.google.sm",
- "blogsearch.google.sn",
- "blogsearch.google.so",
- "blogsearch.google.st",
- "blogsearch.google.td",
- "blogsearch.google.tg",
- "blogsearch.google.tk",
- "blogsearch.google.tl",
- "blogsearch.google.tm",
- "blogsearch.google.to",
- "blogsearch.google.tt",
- "blogsearch.google.us",
- "blogsearch.google.vg",
- "blogsearch.google.vu",
- "blogsearch.google.ws"
- ],
- "parameters": [
- "q"
- ]
- },
- "Google Images": {
- "domains": [
- "google.ac/imgres",
- "google.ad/imgres",
- "google.ae/imgres",
- "google.am/imgres",
- "google.as/imgres",
- "google.at/imgres",
- "google.az/imgres",
- "google.ba/imgres",
- "google.be/imgres",
- "google.bf/imgres",
- "google.bg/imgres",
- "google.bi/imgres",
- "google.bj/imgres",
- "google.bs/imgres",
- "google.by/imgres",
- "google.ca/imgres",
- "google.cat/imgres",
- "google.cc/imgres",
- "google.cd/imgres",
- "google.cf/imgres",
- "google.cg/imgres",
- "google.ch/imgres",
- "google.ci/imgres",
- "google.cl/imgres",
- "google.cm/imgres",
- "google.cn/imgres",
- "google.co.bw/imgres",
- "google.co.ck/imgres",
- "google.co.cr/imgres",
- "google.co.id/imgres",
- "google.co.il/imgres",
- "google.co.in/imgres",
- "google.co.jp/imgres",
- "google.co.ke/imgres",
- "google.co.kr/imgres",
- "google.co.ls/imgres",
- "google.co.ma/imgres",
- "google.co.mz/imgres",
- "google.co.nz/imgres",
- "google.co.th/imgres",
- "google.co.tz/imgres",
- "google.co.ug/imgres",
- "google.co.uk/imgres",
- "google.co.uz/imgres",
- "google.co.ve/imgres",
- "google.co.vi/imgres",
- "google.co.za/imgres",
- "google.co.zm/imgres",
- "google.co.zw/imgres",
- "google.com/imgres",
- "google.com.af/imgres",
- "google.com.ag/imgres",
- "google.com.ai/imgres",
- "google.com.ar/imgres",
- "google.com.au/imgres",
- "google.com.bd/imgres",
- "google.com.bh/imgres",
- "google.com.bn/imgres",
- "google.com.bo/imgres",
- "google.com.br/imgres",
- "google.com.by/imgres",
- "google.com.bz/imgres",
- "google.com.co/imgres",
- "google.com.cu/imgres",
- "google.com.cy/imgres",
- "google.com.do/imgres",
- "google.com.ec/imgres",
- "google.com.eg/imgres",
- "google.com.et/imgres",
- "google.com.fj/imgres",
- "google.com.gh/imgres",
- "google.com.gi/imgres",
- "google.com.gt/imgres",
- "google.com.hk/imgres",
- "google.com.jm/imgres",
- "google.com.kh/imgres",
- "google.com.kh/imgres",
- "google.com.kw/imgres",
- "google.com.lb/imgres",
- "google.com.lc/imgres",
- "google.com.ly/imgres",
- "google.com.mt/imgres",
- "google.com.mx/imgres",
- "google.com.my/imgres",
- "google.com.na/imgres",
- "google.com.nf/imgres",
- "google.com.ng/imgres",
- "google.com.ni/imgres",
- "google.com.np/imgres",
- "google.com.om/imgres",
- "google.com.pa/imgres",
- "google.com.pe/imgres",
- "google.com.ph/imgres",
- "google.com.pk/imgres",
- "google.com.pr/imgres",
- "google.com.py/imgres",
- "google.com.qa/imgres",
- "google.com.sa/imgres",
- "google.com.sb/imgres",
- "google.com.sg/imgres",
- "google.com.sl/imgres",
- "google.com.sv/imgres",
- "google.com.tj/imgres",
- "google.com.tn/imgres",
- "google.com.tr/imgres",
- "google.com.tw/imgres",
- "google.com.ua/imgres",
- "google.com.uy/imgres",
- "google.com.vc/imgres",
- "google.com.vn/imgres",
- "google.cv/imgres",
- "google.cz/imgres",
- "google.de/imgres",
- "google.dj/imgres",
- "google.dk/imgres",
- "google.dm/imgres",
- "google.dz/imgres",
- "google.ee/imgres",
- "google.es/imgres",
- "google.fi/imgres",
- "google.fm/imgres",
- "google.fr/imgres",
- "google.ga/imgres",
- "google.gd/imgres",
- "google.ge/imgres",
- "google.gf/imgres",
- "google.gg/imgres",
- "google.gl/imgres",
- "google.gm/imgres",
- "google.gp/imgres",
- "google.gr/imgres",
- "google.gy/imgres",
- "google.hn/imgres",
- "google.hr/imgres",
- "google.ht/imgres",
- "google.hu/imgres",
- "google.ie/imgres",
- "google.im/imgres",
- "google.io/imgres",
- "google.iq/imgres",
- "google.is/imgres",
- "google.it/imgres",
- "google.it.ao/imgres",
- "google.je/imgres",
- "google.jo/imgres",
- "google.kg/imgres",
- "google.ki/imgres",
- "google.kz/imgres",
- "google.la/imgres",
- "google.li/imgres",
- "google.lk/imgres",
- "google.lt/imgres",
- "google.lu/imgres",
- "google.lv/imgres",
- "google.md/imgres",
- "google.me/imgres",
- "google.mg/imgres",
- "google.mk/imgres",
- "google.ml/imgres",
- "google.mn/imgres",
- "google.ms/imgres",
- "google.mu/imgres",
- "google.mv/imgres",
- "google.mw/imgres",
- "google.ne/imgres",
- "google.nl/imgres",
- "google.no/imgres",
- "google.nr/imgres",
- "google.nu/imgres",
- "google.pl/imgres",
- "google.pn/imgres",
- "google.ps/imgres",
- "google.pt/imgres",
- "google.ro/imgres",
- "google.rs/imgres",
- "google.ru/imgres",
- "google.rw/imgres",
- "google.sc/imgres",
- "google.se/imgres",
- "google.sh/imgres",
- "google.si/imgres",
- "google.sk/imgres",
- "google.sm/imgres",
- "google.sn/imgres",
- "google.so/imgres",
- "google.st/imgres",
- "google.td/imgres",
- "google.tg/imgres",
- "google.tk/imgres",
- "google.tl/imgres",
- "google.tm/imgres",
- "google.to/imgres",
- "google.tt/imgres",
- "google.us/imgres",
- "google.vg/imgres",
- "google.vu/imgres",
- "images.google.ws",
- "images.google.ac",
- "images.google.ad",
- "images.google.ae",
- "images.google.am",
- "images.google.as",
- "images.google.at",
- "images.google.az",
- "images.google.ba",
- "images.google.be",
- "images.google.bf",
- "images.google.bg",
- "images.google.bi",
- "images.google.bj",
- "images.google.bs",
- "images.google.by",
- "images.google.ca",
- "images.google.cat",
- "images.google.cc",
- "images.google.cd",
- "images.google.cf",
- "images.google.cg",
- "images.google.ch",
- "images.google.ci",
- "images.google.cl",
- "images.google.cm",
- "images.google.cn",
- "images.google.co.bw",
- "images.google.co.ck",
- "images.google.co.cr",
- "images.google.co.id",
- "images.google.co.il",
- "images.google.co.in",
- "images.google.co.jp",
- "images.google.co.ke",
- "images.google.co.kr",
- "images.google.co.ls",
- "images.google.co.ma",
- "images.google.co.mz",
- "images.google.co.nz",
- "images.google.co.th",
- "images.google.co.tz",
- "images.google.co.ug",
- "images.google.co.uk",
- "images.google.co.uz",
- "images.google.co.ve",
- "images.google.co.vi",
- "images.google.co.za",
- "images.google.co.zm",
- "images.google.co.zw",
- "images.google.com",
- "images.google.com.af",
- "images.google.com.ag",
- "images.google.com.ai",
- "images.google.com.ar",
- "images.google.com.au",
- "images.google.com.bd",
- "images.google.com.bh",
- "images.google.com.bn",
- "images.google.com.bo",
- "images.google.com.br",
- "images.google.com.by",
- "images.google.com.bz",
- "images.google.com.co",
- "images.google.com.cu",
- "images.google.com.cy",
- "images.google.com.do",
- "images.google.com.ec",
- "images.google.com.eg",
- "images.google.com.et",
- "images.google.com.fj",
- "images.google.com.gh",
- "images.google.com.gi",
- "images.google.com.gt",
- "images.google.com.hk",
- "images.google.com.jm",
- "images.google.com.kh",
- "images.google.com.kh",
- "images.google.com.kw",
- "images.google.com.lb",
- "images.google.com.lc",
- "images.google.com.ly",
- "images.google.com.mt",
- "images.google.com.mx",
- "images.google.com.my",
- "images.google.com.na",
- "images.google.com.nf",
- "images.google.com.ng",
- "images.google.com.ni",
- "images.google.com.np",
- "images.google.com.om",
- "images.google.com.pa",
- "images.google.com.pe",
- "images.google.com.ph",
- "images.google.com.pk",
- "images.google.com.pr",
- "images.google.com.py",
- "images.google.com.qa",
- "images.google.com.sa",
- "images.google.com.sb",
- "images.google.com.sg",
- "images.google.com.sl",
- "images.google.com.sv",
- "images.google.com.tj",
- "images.google.com.tn",
- "images.google.com.tr",
- "images.google.com.tw",
- "images.google.com.ua",
- "images.google.com.uy",
- "images.google.com.vc",
- "images.google.com.vn",
- "images.google.cv",
- "images.google.cz",
- "images.google.de",
- "images.google.dj",
- "images.google.dk",
- "images.google.dm",
- "images.google.dz",
- "images.google.ee",
- "images.google.es",
- "images.google.fi",
- "images.google.fm",
- "images.google.fr",
- "images.google.ga",
- "images.google.gd",
- "images.google.ge",
- "images.google.gf",
- "images.google.gg",
- "images.google.gl",
- "images.google.gm",
- "images.google.gp",
- "images.google.gr",
- "images.google.gy",
- "images.google.hn",
- "images.google.hr",
- "images.google.ht",
- "images.google.hu",
- "images.google.ie",
- "images.google.im",
- "images.google.io",
- "images.google.iq",
- "images.google.is",
- "images.google.it",
- "images.google.it.ao",
- "images.google.je",
- "images.google.jo",
- "images.google.kg",
- "images.google.ki",
- "images.google.kz",
- "images.google.la",
- "images.google.li",
- "images.google.lk",
- "images.google.lt",
- "images.google.lu",
- "images.google.lv",
- "images.google.md",
- "images.google.me",
- "images.google.mg",
- "images.google.mk",
- "images.google.ml",
- "images.google.mn",
- "images.google.ms",
- "images.google.mu",
- "images.google.mv",
- "images.google.mw",
- "images.google.ne",
- "images.google.nl",
- "images.google.no",
- "images.google.nr",
- "images.google.nu",
- "images.google.pl",
- "images.google.pn",
- "images.google.ps",
- "images.google.pt",
- "images.google.ro",
- "images.google.rs",
- "images.google.ru",
- "images.google.rw",
- "images.google.sc",
- "images.google.se",
- "images.google.sh",
- "images.google.si",
- "images.google.sk",
- "images.google.sm",
- "images.google.sn",
- "images.google.so",
- "images.google.st",
- "images.google.td",
- "images.google.tg",
- "images.google.tk",
- "images.google.tl",
- "images.google.tm",
- "images.google.to",
- "images.google.tt",
- "images.google.us",
- "images.google.vg",
- "images.google.vu",
- "images.google.ws"
- ],
- "parameters": [
- "q"
- ]
- },
- "Google News": {
- "domains": [
- "news.google.ac",
- "news.google.ad",
- "news.google.ae",
- "news.google.am",
- "news.google.as",
- "news.google.at",
- "news.google.az",
- "news.google.ba",
- "news.google.be",
- "news.google.bf",
- "news.google.bg",
- "news.google.bi",
- "news.google.bj",
- "news.google.bs",
- "news.google.by",
- "news.google.ca",
- "news.google.cat",
- "news.google.cc",
- "news.google.cd",
- "news.google.cf",
- "news.google.cg",
- "news.google.ch",
- "news.google.ci",
- "news.google.cl",
- "news.google.cm",
- "news.google.cn",
- "news.google.co.bw",
- "news.google.co.ck",
- "news.google.co.cr",
- "news.google.co.id",
- "news.google.co.il",
- "news.google.co.in",
- "news.google.co.jp",
- "news.google.co.ke",
- "news.google.co.kr",
- "news.google.co.ls",
- "news.google.co.ma",
- "news.google.co.mz",
- "news.google.co.nz",
- "news.google.co.th",
- "news.google.co.tz",
- "news.google.co.ug",
- "news.google.co.uk",
- "news.google.co.uz",
- "news.google.co.ve",
- "news.google.co.vi",
- "news.google.co.za",
- "news.google.co.zm",
- "news.google.co.zw",
- "news.google.com",
- "news.google.com.af",
- "news.google.com.ag",
- "news.google.com.ai",
- "news.google.com.ar",
- "news.google.com.au",
- "news.google.com.bd",
- "news.google.com.bh",
- "news.google.com.bn",
- "news.google.com.bo",
- "news.google.com.br",
- "news.google.com.by",
- "news.google.com.bz",
- "news.google.com.co",
- "news.google.com.cu",
- "news.google.com.cy",
- "news.google.com.do",
- "news.google.com.ec",
- "news.google.com.eg",
- "news.google.com.et",
- "news.google.com.fj",
- "news.google.com.gh",
- "news.google.com.gi",
- "news.google.com.gt",
- "news.google.com.hk",
- "news.google.com.jm",
- "news.google.com.kh",
- "news.google.com.kh",
- "news.google.com.kw",
- "news.google.com.lb",
- "news.google.com.lc",
- "news.google.com.ly",
- "news.google.com.mt",
- "news.google.com.mx",
- "news.google.com.my",
- "news.google.com.na",
- "news.google.com.nf",
- "news.google.com.ng",
- "news.google.com.ni",
- "news.google.com.np",
- "news.google.com.om",
- "news.google.com.pa",
- "news.google.com.pe",
- "news.google.com.ph",
- "news.google.com.pk",
- "news.google.com.pr",
- "news.google.com.py",
- "news.google.com.qa",
- "news.google.com.sa",
- "news.google.com.sb",
- "news.google.com.sg",
- "news.google.com.sl",
- "news.google.com.sv",
- "news.google.com.tj",
- "news.google.com.tn",
- "news.google.com.tr",
- "news.google.com.tw",
- "news.google.com.ua",
- "news.google.com.uy",
- "news.google.com.vc",
- "news.google.com.vn",
- "news.google.cv",
- "news.google.cz",
- "news.google.de",
- "news.google.dj",
- "news.google.dk",
- "news.google.dm",
- "news.google.dz",
- "news.google.ee",
- "news.google.es",
- "news.google.fi",
- "news.google.fm",
- "news.google.fr",
- "news.google.ga",
- "news.google.gd",
- "news.google.ge",
- "news.google.gf",
- "news.google.gg",
- "news.google.gl",
- "news.google.gm",
- "news.google.gp",
- "news.google.gr",
- "news.google.gy",
- "news.google.hn",
- "news.google.hr",
- "news.google.ht",
- "news.google.hu",
- "news.google.ie",
- "news.google.im",
- "news.google.io",
- "news.google.iq",
- "news.google.is",
- "news.google.it",
- "news.google.it.ao",
- "news.google.je",
- "news.google.jo",
- "news.google.kg",
- "news.google.ki",
- "news.google.kz",
- "news.google.la",
- "news.google.li",
- "news.google.lk",
- "news.google.lt",
- "news.google.lu",
- "news.google.lv",
- "news.google.md",
- "news.google.me",
- "news.google.mg",
- "news.google.mk",
- "news.google.ml",
- "news.google.mn",
- "news.google.ms",
- "news.google.mu",
- "news.google.mv",
- "news.google.mw",
- "news.google.ne",
- "news.google.nl",
- "news.google.no",
- "news.google.nr",
- "news.google.nu",
- "news.google.pl",
- "news.google.pn",
- "news.google.ps",
- "news.google.pt",
- "news.google.ro",
- "news.google.rs",
- "news.google.ru",
- "news.google.rw",
- "news.google.sc",
- "news.google.se",
- "news.google.sh",
- "news.google.si",
- "news.google.sk",
- "news.google.sm",
- "news.google.sn",
- "news.google.so",
- "news.google.st",
- "news.google.td",
- "news.google.tg",
- "news.google.tk",
- "news.google.tl",
- "news.google.tm",
- "news.google.to",
- "news.google.tt",
- "news.google.us",
- "news.google.vg",
- "news.google.vu",
- "news.google.ws"
- ],
- "parameters": [
- "q"
- ]
- },
- "Google Product Search": {
- "domains": [
- "google.ac/products",
- "google.ad/products",
- "google.ae/products",
- "google.am/products",
- "google.as/products",
- "google.at/products",
- "google.az/products",
- "google.ba/products",
- "google.be/products",
- "google.bf/products",
- "google.bg/products",
- "google.bi/products",
- "google.bj/products",
- "google.bs/products",
- "google.by/products",
- "google.ca/products",
- "google.cat/products",
- "google.cc/products",
- "google.cd/products",
- "google.cf/products",
- "google.cg/products",
- "google.ch/products",
- "google.ci/products",
- "google.cl/products",
- "google.cm/products",
- "google.cn/products",
- "google.co.bw/products",
- "google.co.ck/products",
- "google.co.cr/products",
- "google.co.id/products",
- "google.co.il/products",
- "google.co.in/products",
- "google.co.jp/products",
- "google.co.ke/products",
- "google.co.kr/products",
- "google.co.ls/products",
- "google.co.ma/products",
- "google.co.mz/products",
- "google.co.nz/products",
- "google.co.th/products",
- "google.co.tz/products",
- "google.co.ug/products",
- "google.co.uk/products",
- "google.co.uz/products",
- "google.co.ve/products",
- "google.co.vi/products",
- "google.co.za/products",
- "google.co.zm/products",
- "google.co.zw/products",
- "google.com/products",
- "google.com.af/products",
- "google.com.ag/products",
- "google.com.ai/products",
- "google.com.ar/products",
- "google.com.au/products",
- "google.com.bd/products",
- "google.com.bh/products",
- "google.com.bn/products",
- "google.com.bo/products",
- "google.com.br/products",
- "google.com.by/products",
- "google.com.bz/products",
- "google.com.co/products",
- "google.com.cu/products",
- "google.com.cy/products",
- "google.com.do/products",
- "google.com.ec/products",
- "google.com.eg/products",
- "google.com.et/products",
- "google.com.fj/products",
- "google.com.gh/products",
- "google.com.gi/products",
- "google.com.gt/products",
- "google.com.hk/products",
- "google.com.jm/products",
- "google.com.kh/products",
- "google.com.kh/products",
- "google.com.kw/products",
- "google.com.lb/products",
- "google.com.lc/products",
- "google.com.ly/products",
- "google.com.mt/products",
- "google.com.mx/products",
- "google.com.my/products",
- "google.com.na/products",
- "google.com.nf/products",
- "google.com.ng/products",
- "google.com.ni/products",
- "google.com.np/products",
- "google.com.om/products",
- "google.com.pa/products",
- "google.com.pe/products",
- "google.com.ph/products",
- "google.com.pk/products",
- "google.com.pr/products",
- "google.com.py/products",
- "google.com.qa/products",
- "google.com.sa/products",
- "google.com.sb/products",
- "google.com.sg/products",
- "google.com.sl/products",
- "google.com.sv/products",
- "google.com.tj/products",
- "google.com.tn/products",
- "google.com.tr/products",
- "google.com.tw/products",
- "google.com.ua/products",
- "google.com.uy/products",
- "google.com.vc/products",
- "google.com.vn/products",
- "google.cv/products",
- "google.cz/products",
- "google.de/products",
- "google.dj/products",
- "google.dk/products",
- "google.dm/products",
- "google.dz/products",
- "google.ee/products",
- "google.es/products",
- "google.fi/products",
- "google.fm/products",
- "google.fr/products",
- "google.ga/products",
- "google.gd/products",
- "google.ge/products",
- "google.gf/products",
- "google.gg/products",
- "google.gl/products",
- "google.gm/products",
- "google.gp/products",
- "google.gr/products",
- "google.gy/products",
- "google.hn/products",
- "google.hr/products",
- "google.ht/products",
- "google.hu/products",
- "google.ie/products",
- "google.im/products",
- "google.io/products",
- "google.iq/products",
- "google.is/products",
- "google.it/products",
- "google.it.ao/products",
- "google.je/products",
- "google.jo/products",
- "google.kg/products",
- "google.ki/products",
- "google.kz/products",
- "google.la/products",
- "google.li/products",
- "google.lk/products",
- "google.lt/products",
- "google.lu/products",
- "google.lv/products",
- "google.md/products",
- "google.me/products",
- "google.mg/products",
- "google.mk/products",
- "google.ml/products",
- "google.mn/products",
- "google.ms/products",
- "google.mu/products",
- "google.mv/products",
- "google.mw/products",
- "google.ne/products",
- "google.nl/products",
- "google.no/products",
- "google.nr/products",
- "google.nu/products",
- "google.pl/products",
- "google.pn/products",
- "google.ps/products",
- "google.pt/products",
- "google.ro/products",
- "google.rs/products",
- "google.ru/products",
- "google.rw/products",
- "google.sc/products",
- "google.se/products",
- "google.sh/products",
- "google.si/products",
- "google.sk/products",
- "google.sm/products",
- "google.sn/products",
- "google.so/products",
- "google.st/products",
- "google.td/products",
- "google.tg/products",
- "google.tk/products",
- "google.tl/products",
- "google.tm/products",
- "google.to/products",
- "google.tt/products",
- "google.us/products",
- "google.vg/products",
- "google.vu/products",
- "google.ws/products",
- "www.google.ac/products",
- "www.google.ad/products",
- "www.google.ae/products",
- "www.google.am/products",
- "www.google.as/products",
- "www.google.at/products",
- "www.google.az/products",
- "www.google.ba/products",
- "www.google.be/products",
- "www.google.bf/products",
- "www.google.bg/products",
- "www.google.bi/products",
- "www.google.bj/products",
- "www.google.bs/products",
- "www.google.by/products",
- "www.google.ca/products",
- "www.google.cat/products",
- "www.google.cc/products",
- "www.google.cd/products",
- "www.google.cf/products",
- "www.google.cg/products",
- "www.google.ch/products",
- "www.google.ci/products",
- "www.google.cl/products",
- "www.google.cm/products",
- "www.google.cn/products",
- "www.google.co.bw/products",
- "www.google.co.ck/products",
- "www.google.co.cr/products",
- "www.google.co.id/products",
- "www.google.co.il/products",
- "www.google.co.in/products",
- "www.google.co.jp/products",
- "www.google.co.ke/products",
- "www.google.co.kr/products",
- "www.google.co.ls/products",
- "www.google.co.ma/products",
- "www.google.co.mz/products",
- "www.google.co.nz/products",
- "www.google.co.th/products",
- "www.google.co.tz/products",
- "www.google.co.ug/products",
- "www.google.co.uk/products",
- "www.google.co.uz/products",
- "www.google.co.ve/products",
- "www.google.co.vi/products",
- "www.google.co.za/products",
- "www.google.co.zm/products",
- "www.google.co.zw/products",
- "www.google.com/products",
- "www.google.com.af/products",
- "www.google.com.ag/products",
- "www.google.com.ai/products",
- "www.google.com.ar/products",
- "www.google.com.au/products",
- "www.google.com.bd/products",
- "www.google.com.bh/products",
- "www.google.com.bn/products",
- "www.google.com.bo/products",
- "www.google.com.br/products",
- "www.google.com.by/products",
- "www.google.com.bz/products",
- "www.google.com.co/products",
- "www.google.com.cu/products",
- "www.google.com.cy/products",
- "www.google.com.do/products",
- "www.google.com.ec/products",
- "www.google.com.eg/products",
- "www.google.com.et/products",
- "www.google.com.fj/products",
- "www.google.com.gh/products",
- "www.google.com.gi/products",
- "www.google.com.gt/products",
- "www.google.com.hk/products",
- "www.google.com.jm/products",
- "www.google.com.kh/products",
- "www.google.com.kh/products",
- "www.google.com.kw/products",
- "www.google.com.lb/products",
- "www.google.com.lc/products",
- "www.google.com.ly/products",
- "www.google.com.mt/products",
- "www.google.com.mx/products",
- "www.google.com.my/products",
- "www.google.com.na/products",
- "www.google.com.nf/products",
- "www.google.com.ng/products",
- "www.google.com.ni/products",
- "www.google.com.np/products",
- "www.google.com.om/products",
- "www.google.com.pa/products",
- "www.google.com.pe/products",
- "www.google.com.ph/products",
- "www.google.com.pk/products",
- "www.google.com.pr/products",
- "www.google.com.py/products",
- "www.google.com.qa/products",
- "www.google.com.sa/products",
- "www.google.com.sb/products",
- "www.google.com.sg/products",
- "www.google.com.sl/products",
- "www.google.com.sv/products",
- "www.google.com.tj/products",
- "www.google.com.tn/products",
- "www.google.com.tr/products",
- "www.google.com.tw/products",
- "www.google.com.ua/products",
- "www.google.com.uy/products",
- "www.google.com.vc/products",
- "www.google.com.vn/products",
- "www.google.cv/products",
- "www.google.cz/products",
- "www.google.de/products",
- "www.google.dj/products",
- "www.google.dk/products",
- "www.google.dm/products",
- "www.google.dz/products",
- "www.google.ee/products",
- "www.google.es/products",
- "www.google.fi/products",
- "www.google.fm/products",
- "www.google.fr/products",
- "www.google.ga/products",
- "www.google.gd/products",
- "www.google.ge/products",
- "www.google.gf/products",
- "www.google.gg/products",
- "www.google.gl/products",
- "www.google.gm/products",
- "www.google.gp/products",
- "www.google.gr/products",
- "www.google.gy/products",
- "www.google.hn/products",
- "www.google.hr/products",
- "www.google.ht/products",
- "www.google.hu/products",
- "www.google.ie/products",
- "www.google.im/products",
- "www.google.io/products",
- "www.google.iq/products",
- "www.google.is/products",
- "www.google.it/products",
- "www.google.it.ao/products",
- "www.google.je/products",
- "www.google.jo/products",
- "www.google.kg/products",
- "www.google.ki/products",
- "www.google.kz/products",
- "www.google.la/products",
- "www.google.li/products",
- "www.google.lk/products",
- "www.google.lt/products",
- "www.google.lu/products",
- "www.google.lv/products",
- "www.google.md/products",
- "www.google.me/products",
- "www.google.mg/products",
- "www.google.mk/products",
- "www.google.ml/products",
- "www.google.mn/products",
- "www.google.ms/products",
- "www.google.mu/products",
- "www.google.mv/products",
- "www.google.mw/products",
- "www.google.ne/products",
- "www.google.nl/products",
- "www.google.no/products",
- "www.google.nr/products",
- "www.google.nu/products",
- "www.google.pl/products",
- "www.google.pn/products",
- "www.google.ps/products",
- "www.google.pt/products",
- "www.google.ro/products",
- "www.google.rs/products",
- "www.google.ru/products",
- "www.google.rw/products",
- "www.google.sc/products",
- "www.google.se/products",
- "www.google.sh/products",
- "www.google.si/products",
- "www.google.sk/products",
- "www.google.sm/products",
- "www.google.sn/products",
- "www.google.so/products",
- "www.google.st/products",
- "www.google.td/products",
- "www.google.tg/products",
- "www.google.tk/products",
- "www.google.tl/products",
- "www.google.tm/products",
- "www.google.to/products",
- "www.google.tt/products",
- "www.google.us/products",
- "www.google.vg/products",
- "www.google.vu/products",
- "www.google.ws/products"
- ],
- "parameters": [
- "q"
- ]
- },
- "Google Video": {
- "domains": [
- "video.google.com"
- ],
- "parameters": [
- "q"
- ]
- },
- "Goyellow.de": {
- "domains": [
- "www.goyellow.de"
- ],
- "parameters": [
- "MDN"
- ]
- },
- "Gule Sider": {
- "domains": [
- "www.gulesider.no"
- ],
- "parameters": [
- "q"
- ]
- },
- "HighBeam": {
- "domains": [
- "www.highbeam.com"
- ],
- "parameters": [
- "q"
- ]
- },
- "Hit-Parade": {
- "domains": [
- "req.-hit-parade.com",
- "class.hit-parade.com",
- "www.hit-parade.com"
- ],
- "parameters": [
- "p7"
- ]
- },
- "Holmes": {
- "domains": [
- "holmes.ge"
- ],
- "parameters": [
- "q"
- ]
- },
- "Hooseek.com": {
- "domains": [
- "www.hooseek.com"
- ],
- "parameters": [
- "recherche"
- ]
- },
- "Hotbot": {
- "domains": [
- "www.hotbot.com"
- ],
- "parameters": [
- "query"
- ]
- },
- "Haosou": {
- "domains": [
- "www.haosou.com"
- ],
- "parameters": [
- "q"
- ]
- },
- "I-play": {
- "domains": [
- "start.iplay.com"
- ],
- "parameters": [
- "q"
- ]
- },
- "I.ua": {
- "domains": [
- "search.i.ua"
- ],
- "parameters": [
- "q"
- ]
- },
- "ICQ": {
- "domains": [
- "www.icq.com",
- "search.icq.com"
- ],
- "parameters": [
- "q"
- ]
- },
- "IXquick": {
- "domains": [
- "ixquick.com",
- "www.eu.ixquick.com",
- "ixquick.de",
- "www.ixquick.de",
- "us.ixquick.com",
- "s1.us.ixquick.com",
- "s2.us.ixquick.com",
- "s3.us.ixquick.com",
- "s4.us.ixquick.com",
- "s5.us.ixquick.com",
- "eu.ixquick.com",
- "s8-eu.ixquick.com",
- "s1-eu.ixquick.de"
- ],
- "parameters": [
- "query"
- ]
- },
- "Icerockeet": {
- "domains": [
- "blogs.icerocket.com"
- ],
- "parameters": [
- "q"
- ]
- },
- "Ilse": {
- "domains": [
- "www.ilse.nl"
- ],
- "parameters": [
- "search_for"
- ]
- },
- "InfoSpace": {
- "domains": [
- "infospace.com",
- "dogpile.com",
- "www.dogpile.com",
- "metacrawler.com",
- "webfetch.com",
- "webcrawler.com",
- "search.kiwee.com",
- "isearch.babylon.com",
- "start.facemoods.com",
- "search.magnetic.com",
- "search.searchcompletion.com",
- "clusty.com"
- ],
- "parameters": [
- "q",
- "s"
- ]
- },
- "Inbox": {
- "domains": [
- "inbox.com"
- ],
- "parameters": [
- "q"
- ]
- },
- "Inbox.com": {
- "domains": [
- "inbox.com/search/"
- ],
- "parameters": [
- "q"
- ]
- },
- "Info": {
- "domains": [
- "info.com"
- ],
- "parameters": [
- "qkw"
- ]
- },
- "Interia": {
- "domains": [
- "www.google.interia.pl"
- ],
- "parameters": [
- "q"
- ]
- },
- "Jungle Key": {
- "domains": [
- "junglekey.com",
- "junglekey.fr"
- ],
- "parameters": [
- "query"
- ]
- },
- "Jungle Spider": {
- "domains": [
- "www.jungle-spider.de"
- ],
- "parameters": [
- "q"
- ]
- },
- "Jyxo": {
- "domains": [
- "jyxo.1188.cz"
- ],
- "parameters": [
- "q"
- ]
- },
- "Kataweb": {
- "domains": [
- "www.kataweb.it"
- ],
- "parameters": [
- "q"
- ]
- },
- "Kvasir": {
- "domains": [
- "www.kvasir.no"
- ],
- "parameters": [
- "q"
- ]
- },
- "La Toile Du Quebec Via Google": {
- "domains": [
- "www.toile.com",
- "web.toile.com"
- ],
- "parameters": [
- "q"
- ]
- },
- "Latne": {
- "domains": [
- "www.latne.lv"
- ],
- "parameters": [
- "q"
- ]
- },
- "Lo.st": {
- "domains": [
- "lo.st"
- ],
- "parameters": [
- "x_query"
- ]
- },
- "Looksmart": {
- "domains": [
- "www.looksmart.com"
- ],
- "parameters": [
- "key"
- ]
- },
- "Lycos": {
- "domains": [
- "search.lycos.com",
- "www.lycos.com",
- "lycos.com"
- ],
- "parameters": [
- "query"
- ]
- },
- "Mail.ru": {
- "domains": [
- "go.mail.ru"
- ],
- "parameters": [
- "q"
- ]
- },
- "Mamma": {
- "domains": [
- "www.mamma.com",
- "mamma75.mamma.com"
- ],
- "parameters": [
- "query"
- ]
- },
- "Marktplaats": {
- "domains": [
- "www.marktplaats.nl"
- ],
- "parameters": [
- "query"
- ]
- },
- "Maxwebsearch": {
- "domains": [
- "maxwebsearch.com"
- ],
- "parameters": [
- "query"
- ]
- },
- "Meinestadt": {
- "domains": [
- "www.meinestadt.de"
- ],
- "parameters": [
- "words"
- ]
- },
- "Meta": {
- "domains": [
- "meta.ua"
- ],
- "parameters": [
- "q"
- ]
- },
- "MetaCrawler.de": {
- "domains": [
- "s1.metacrawler.de",
- "s2.metacrawler.de",
- "s3.metacrawler.de"
- ],
- "parameters": [
- "qry"
- ]
- },
- "Metager": {
- "domains": [
- "meta.rrzn.uni-hannover.de",
- "www.metager.de"
- ],
- "parameters": [
- "eingabe"
- ]
- },
- "Metager2": {
- "domains": [
- "metager2.de"
- ],
- "parameters": [
- "q"
- ]
- },
- "Mister Wong": {
- "domains": [
- "www.mister-wong.com",
- "www.mister-wong.de"
- ],
- "parameters": [
- "Keywords"
- ]
- },
- "Monstercrawler": {
- "domains": [
- "www.monstercrawler.com"
- ],
- "parameters": [
- "qry"
- ]
- },
- "Mozbot": {
- "domains": [
- "www.mozbot.fr",
- "www.mozbot.co.uk",
- "www.mozbot.com"
- ],
- "parameters": [
- "q"
- ]
- },
- "MySearch": {
- "domains": [
- "www.mysearch.com",
- "ms114.mysearch.com",
- "ms146.mysearch.com",
- "kf.mysearch.myway.com",
- "ki.mysearch.myway.com",
- "search.myway.com",
- "search.mywebsearch.com"
- ],
- "parameters": [
- "searchfor",
- "searchFor"
- ]
- },
- "Najdi": {
- "domains": [
- "www.najdi.si"
- ],
- "parameters": [
- "q"
- ]
- },
- "Nate": {
- "domains": [
- "search.nate.com"
- ],
- "parameters": [
- "q"
- ]
- },
- "Naver": {
- "domains": [
- "search.naver.com"
- ],
- "parameters": [
- "query"
- ]
- },
- "Naver Images": {
- "domains": [
- "image.search.naver.com",
- "imagesearch.naver.com"
- ],
- "parameters": [
- "query"
- ]
- },
- "Needtofind": {
- "domains": [
- "ko.search.need2find.com"
- ],
- "parameters": [
- "searchfor"
- ]
- },
- "Neti": {
- "domains": [
- "www.neti.ee"
- ],
- "parameters": [
- "query"
- ]
- },
- "Nifty": {
- "domains": [
- "search.nifty.com"
- ],
- "parameters": [
- "q"
- ]
- },
- "Nigma": {
- "domains": [
- "nigma.ru"
- ],
- "parameters": [
- "s"
- ]
- },
- "Onet": {
- "domains": [
- "szukaj.onet.pl"
- ],
- "parameters": [
- "qt"
- ]
- },
- "Online.no": {
- "domains": [
- "online.no"
- ],
- "parameters": [
- "q"
- ]
- },
- "Opplysningen 1881": {
- "domains": [
- "www.1881.no"
- ],
- "parameters": [
- "Query"
- ]
- },
- "Orange": {
- "domains": [
- "busca.orange.es",
- "search.orange.co.uk"
- ],
- "parameters": [
- "q"
- ]
- },
- "Paperball": {
- "domains": [
- "www.paperball.de"
- ],
- "parameters": [
- "q"
- ]
- },
- "PeoplePC": {
- "domains": [
- "search.peoplepc.com"
- ],
- "parameters": [
- "q"
- ]
- },
- "Picsearch": {
- "domains": [
- "www.picsearch.com"
- ],
- "parameters": [
- "q"
- ]
- },
- "Plazoo": {
- "domains": [
- "www.plazoo.com"
- ],
- "parameters": [
- "q"
- ]
- },
- "Poisk.ru": {
- "domains": [
- "www.plazoo.com"
- ],
- "parameters": [
- "q"
- ]
- },
- "PriceRunner": {
- "domains": [
- "www.pricerunner.co.uk"
- ],
- "parameters": [
- "q"
- ]
- },
- "Qualigo": {
- "domains": [
- "www.qualigo.at",
- "www.qualigo.ch",
- "www.qualigo.de",
- "www.qualigo.nl"
- ],
- "parameters": [
- "q"
- ]
- },
- "RPMFind": {
- "domains": [
- "rpmfind.net",
- "fr2.rpmfind.net"
- ],
- "parameters": [
- "query"
- ]
- },
- "Rakuten": {
- "domains": [
- "websearch.rakuten.co.jp"
- ],
- "parameters": [
- "qt"
- ]
- },
- "Rambler": {
- "domains": [
- "nova.rambler.ru"
- ],
- "parameters": [
- "query",
- "words"
- ]
- },
- "Road Runner Search": {
- "domains": [
- "search.rr.com"
- ],
- "parameters": [
- "q"
- ]
- },
- "Sapo": {
- "domains": [
- "pesquisa.sapo.pt"
- ],
- "parameters": [
- "q"
- ]
- },
- "Search This": {
- "domains": [
- "www.searchthis.com"
- ],
- "parameters": [
- "q"
- ]
- },
- "Search.ch": {
- "domains": [
- "www.search.ch"
- ],
- "parameters": [
- "q"
- ]
- },
- "Search.com": {
- "domains": [
- "www.search.com"
- ],
- "parameters": [
- "q"
- ]
- },
- "SearchCanvas": {
- "domains": [
- "www.searchcanvas.com"
- ],
- "parameters": [
- "q"
- ]
- },
- "Searchalot": {
- "domains": [
- "searchalot.com"
- ],
- "parameters": [
- "q"
- ]
- },
- "SearchLock": {
- "domains": [
- "searchlock.com"
- ],
- "parameters": [
- "q"
- ]
- },
- "Searchy": {
- "domains": [
- "www.searchy.co.uk"
- ],
- "parameters": [
- "q"
- ]
- },
- "Seznam": {
- "domains": [
- "search.seznam.cz"
- ],
- "parameters": [
- "q"
- ]
- },
- "Sharelook": {
- "domains": [
- "www.sharelook.fr"
- ],
- "parameters": [
- "keyword"
- ]
- },
- "Skynet": {
- "domains": [
- "www.skynet.be"
- ],
- "parameters": [
- "q"
- ]
- },
- "The Smart Search": {
- "domains": [
- "thesmartsearch.net",
- "www.thesmartsearch.net"
- ],
- "parameters": [
- "q"
- ]
- },
- "Softonic": {
- "domains": [
- "search.softonic.com"
- ],
- "parameters": [
- "q"
- ]
- },
- "Sogou": {
- "domains": [
- "www.sogou.com",
- "www.soso.com"
- ],
- "parameters": [
- "query",
- "w"
- ]
- },
- "Startpagina": {
- "domains": [
- "startgoogle.startpagina.nl"
- ],
- "parameters": [
- "q"
- ]
- },
- "Startsiden": {
- "domains": [
- "www.startsiden.no"
- ],
- "parameters": [
- "q"
- ]
- },
- "Suchmaschine.com": {
- "domains": [
- "www.suchmaschine.com"
- ],
- "parameters": [
- "suchstr"
- ]
- },
- "Suchnase": {
- "domains": [
- "www.suchnase.de"
- ],
- "parameters": [
- "q"
- ]
- },
- "Superpages": {
- "domains": [
- "superpages.com"
- ],
- "parameters": [
- "C"
- ]
- },
- "T-Online": {
- "domains": [
- "suche.t-online.de",
- "brisbane.t-online.de",
- "navigationshilfe.t-online.de"
- ],
- "parameters": [
- "q"
- ]
- },
- "TalkTalk": {
- "domains": [
- "www.talktalk.co.uk"
- ],
- "parameters": [
- "query"
- ]
- },
- "Technorati": {
- "domains": [
- "technorati.com"
- ],
- "parameters": [
- "q"
- ]
- },
- "Telstra": {
- "domains": [
- "search.media.telstra.com.au"
- ],
- "parameters": [
- "find"
- ]
- },
- "Teoma": {
- "domains": [
- "www.teoma.com"
- ],
- "parameters": [
- "q"
- ]
- },
- "Terra": {
- "domains": [
- "buscador.terra.es",
- "buscador.terra.cl",
- "buscador.terra.com.br"
- ],
- "parameters": [
- "query"
- ]
- },
- "Tiscali": {
- "domains": [
- "search.tiscali.it",
- "search-dyn.tiscali.it",
- "hledani.tiscali.cz"
- ],
- "parameters": [
- "q",
- "key"
- ]
- },
- "Tixuma": {
- "domains": [
- "www.tixuma.de"
- ],
- "parameters": [
- "sc"
- ]
- },
- "Toolbarhome": {
- "domains": [
- "www.toolbarhome.com",
- "vshare.toolbarhome.com"
- ],
- "parameters": [
- "q"
- ]
- },
- "Trouvez.com": {
- "domains": [
- "www.trouvez.com"
- ],
- "parameters": [
- "query"
- ]
- },
- "TrovaRapido": {
- "domains": [
- "www.trovarapido.com"
- ],
- "parameters": [
- "q"
- ]
- },
- "Trusted-Search": {
- "domains": [
- "www.trusted--search.com"
- ],
- "parameters": [
- "w"
- ]
- },
- "Tut.by": {
- "domains": [
- "search.tut.by"
- ],
- "parameters": [
- "query"
- ]
- },
- "Twingly": {
- "domains": [
- "www.twingly.com"
- ],
- "parameters": [
- "q"
- ]
- },
- "UKR.net": {
- "domains": [
- "search.ukr.net"
- ],
- "parameters": [
- "q"
- ]
- },
- "URL.ORGanizier": {
- "domains": [
- "www.url.org"
- ],
- "parameters": [
- "q"
- ]
- },
- "Vinden": {
- "domains": [
- "www.vinden.nl"
- ],
- "parameters": [
- "q"
- ]
- },
- "Vindex": {
- "domains": [
- "www.vindex.nl",
- "search.vindex.nl"
- ],
- "parameters": [
- "search_for"
- ]
- },
- "Virgilio": {
- "domains": [
- "ricerca.virgilio.it",
- "ricercaimmagini.virgilio.it",
- "ricercavideo.virgilio.it",
- "ricercanews.virgilio.it",
- "mobile.virgilio.it"
- ],
- "parameters": [
- "qs"
- ]
- },
- "Vi-view": {
- "domains": [
- "viview.inspsearch.com"
- ],
- "parameters": [
- "q"
- ]
- },
- "Voila": {
- "domains": [
- "search.ke.voila.fr",
- "www.lemoteur.fr"
- ],
- "parameters": [
- "rdata",
- "kw"
- ]
- },
- "Volny": {
- "domains": [
- "web.volny.cz"
- ],
- "parameters": [
- "search"
- ]
- },
- "WWW": {
- "domains": [
- "search.www.ee"
- ],
- "parameters": [
- "query"
- ]
- },
- "Walhello": {
- "domains": [
- "www.walhello.info",
- "www.walhello.com",
- "www.walhello.de",
- "www.walhello.nl"
- ],
- "parameters": [
- "key"
- ]
- },
- "Web.de": {
- "domains": [
- "suche.web.de"
- ],
- "parameters": [
- "su"
- ]
- },
- "Web.nl": {
- "domains": [
- "www.web.nl"
- ],
- "parameters": [
- "zoekwoord"
- ]
- },
- "WebSearch": {
- "domains": [
- "www.websearch.com"
- ],
- "parameters": [
- "qkw",
- "q"
- ]
- },
- "Weborama": {
- "domains": [
- "www.weborama.com"
- ],
- "parameters": [
- "QUERY"
- ]
- },
- "Winamp": {
- "domains": [
- "search.winamp.com"
- ],
- "parameters": [
- "q"
- ]
- },
- "Wirtualna Polska": {
- "domains": [
- "szukaj.wp.pl"
- ],
- "parameters": [
- "szukaj"
- ]
- },
- "Witch": {
- "domains": [
- "www.witch.de"
- ],
- "parameters": [
- "search"
- ]
- },
- "X-recherche": {
- "domains": [
- "www.x-recherche.com"
- ],
- "parameters": [
- "MOTS"
- ]
- },
- "Yahoo!": {
- "domains": [
- "search.yahoo.com",
- "yahoo.com",
- "ar.search.yahoo.com",
- "ar.yahoo.com",
- "au.search.yahoo.com",
- "au.yahoo.com",
- "br.search.yahoo.com",
- "br.yahoo.com",
- "cade.searchde.yahoo.com",
- "cade.yahoo.com",
- "chinese.searchinese.yahoo.com",
- "chinese.yahoo.com",
- "cn.search.yahoo.com",
- "cn.yahoo.com",
- "de.search.yahoo.com",
- "de.yahoo.com",
- "dk.search.yahoo.com",
- "dk.yahoo.com",
- "es.search.yahoo.com",
- "es.yahoo.com",
- "espanol.searchpanol.yahoo.com",
- "espanol.searchpanol.yahoo.com",
- "espanol.yahoo.com",
- "espanol.yahoo.com",
- "fr.search.yahoo.com",
- "fr.yahoo.com",
- "ie.search.yahoo.com",
- "ie.yahoo.com",
- "it.search.yahoo.com",
- "it.yahoo.com",
- "kr.search.yahoo.com",
- "kr.yahoo.com",
- "mx.search.yahoo.com",
- "mx.yahoo.com",
- "no.search.yahoo.com",
- "no.yahoo.com",
- "nz.search.yahoo.com",
- "nz.yahoo.com",
- "one.cn.yahoo.com",
- "one.searchn.yahoo.com",
- "qc.search.yahoo.com",
- "qc.search.yahoo.com",
- "qc.search.yahoo.com",
- "qc.yahoo.com",
- "qc.yahoo.com",
- "se.search.yahoo.com",
- "se.search.yahoo.com",
- "se.yahoo.com",
- "search.searcharch.yahoo.com",
- "search.yahoo.com",
- "uk.search.yahoo.com",
- "uk.yahoo.com",
- "www.yahoo.co.jp",
- "search.yahoo.co.jp",
- "m.chiebukuro.yahoo.co.jp",
- "detail.chiebukuro.yahoo.co.jp",
- "www.cercato.it",
- "search.offerbox.com",
- "ys.mirostart.com"
- ],
- "parameters": [
- "p",
- "q"
- ]
- },
- "Yahoo! Images": {
- "domains": [
- "image.yahoo.cn",
- "images.search.yahoo.com",
- "image.search.yahoo.co.jp"
- ],
- "parameters": [
- "p",
- "q"
- ]
- },
- "Yam": {
- "domains": [
- "search.yam.com"
- ],
- "parameters": [
- "k"
- ]
- },
- "Yandex": {
- "domains": [
- "yandex.ru",
- "yandex.ua",
- "yandex.com",
- "yandex.by",
- "www.yandex.ru",
- "www.yandex.ua",
- "www.yandex.com",
- "www.yandex.by"
- ],
- "parameters": [
- "text"
- ]
- },
- "Yandex Images": {
- "domains": [
- "images.yandex.ru",
- "images.yandex.ua",
- "images.yandex.com"
- ],
- "parameters": [
- "text"
- ]
- },
- "Yasni": {
- "domains": [
- "www.yasni.de",
- "www.yasni.com",
- "www.yasni.co.uk",
- "www.yasni.ch",
- "www.yasni.at"
- ],
- "parameters": [
- "query"
- ]
- },
- "Yatedo": {
- "domains": [
- "www.yatedo.com",
- "www.yatedo.fr"
- ],
- "parameters": [
- "q"
- ]
- },
- "Yellowpages": {
- "domains": [
- "www.yellowpages.com",
- "www.yellowpages.com.au",
- "www.yellowpages.ca"
- ],
- "parameters": [
- "q",
- "search_terms"
- ]
- },
- "Yippy": {
- "domains": [
- "search.yippy.com"
- ],
- "parameters": [
- "q",
- "query"
- ]
- },
- "YouGoo": {
- "domains": [
- "www.yougoo.fr"
- ],
- "parameters": [
- "q"
- ]
- },
- "Zapmeta": {
- "domains": [
- "www.zapmeta.com",
- "www.zapmeta.nl",
- "www.zapmeta.de",
- "uk.zapmeta.com"
- ],
- "parameters": [
- "q",
- "query"
- ]
- },
- "Zhongsou": {
- "domains": [
- "p.zhongsou.com"
- ],
- "parameters": [
- "w"
- ]
- },
- "Zoek": {
- "domains": [
- "www3.zoek.nl"
- ],
- "parameters": [
- "q"
- ]
- },
- "Zoeken": {
- "domains": [
- "www.zoeken.nl"
- ],
- "parameters": [
- "q"
- ]
- },
- "Zoohoo": {
- "domains": [
- "zoohoo.cz"
- ],
- "parameters": [
- "q"
- ]
- },
- "all.by": {
- "domains": [
- "all.by"
- ],
- "parameters": [
- "query"
- ]
- },
- "arama": {
- "domains": [
- "arama.com"
- ],
- "parameters": [
- "q"
- ]
- },
- "blekko": {
- "domains": [
- "blekko.com"
- ],
- "parameters": [
- "q"
- ]
- },
- "canoe.ca": {
- "domains": [
- "web.canoe.ca"
- ],
- "parameters": [
- "q"
- ]
- },
- "dmoz": {
- "domains": [
- "dmoz.org",
- "editors.dmoz.org"
- ],
- "parameters": [
- "q"
- ]
- },
- "earthlink": {
- "domains": [
- "search.earthlink.net"
- ],
- "parameters": [
- "q"
- ]
- },
- "eo": {
- "domains": [
- "eo.st"
- ],
- "parameters": [
- "x_query"
- ]
- },
- "goo": {
- "domains": [
- "search.goo.ne.jp",
- "ocnsearch.goo.ne.jp"
- ],
- "parameters": [
- "MT"
- ]
- },
- "maailm": {
- "domains": [
- "www.maailm.com"
- ],
- "parameters": [
- "tekst"
- ]
- },
- "qip": {
- "domains": [
- "search.qip.ru"
- ],
- "parameters": [
- "query"
- ]
- },
- "SoSoDesk": {
- "domains": [
- "www.soso.com",
- "sosodesktop.com",
- "search.sosodesktop.com"
- ],
- "parameters": [
- "q"
- ]
- },
- "Snapdo": {
- "domains": [
- "search.snapdo.com"
- ],
- "parameters": [
- "q"
- ]
- },
- "suche.info": {
- "domains": [
- "suche.info"
- ],
- "parameters": [
- "q"
- ]
- },
- "uol.com.br": {
- "domains": [
- "busca.uol.com.br"
- ],
- "parameters": [
- "q"
- ]
- }
- },
- "social": {
- "Badoo": {
- "domains": [
- "badoo.com"
- ]
- },
- "Bebo": {
- "domains": [
- "bebo.com"
- ]
- },
- "BlackPlanet": {
- "domains": [
- "blackplanet.com"
- ]
- },
- "Bloglovin'": {
- "domains": [
- "bloglovin.com"
- ]
- },
- "Buzznet": {
- "domains": [
- "wayn.com",
- "buzznet.com"
- ]
- },
- "Classmates": {
- "domains": [
- "classmates.com"
- ]
- },
- "Cyworld": {
- "domains": [
- "global.cyworld.com"
- ]
- },
- "DeviantArt":{
- "domains": [
- "deviantart.com"
- ]
- },
- "Delicious":{
- "domains": [
- "delicious.com"
- ]
- },
- "Discus": {
- "domains": [
- "redirect.disqus.com",
- "disq.us",
- "disqus.com"
- ]
- },
- "Donanimhaber": {
- "domains": [
- "donanimhaber.com"
- ]
- },
- "Douban": {
- "domains": [
- "douban.com"
- ]
- },
- "Facebook": {
- "domains": [
- "facebook.com",
- "fb.me",
- "m.facebook.com",
- "l.facebook.com",
- "lm.facebook.com"
- ]
- },
- "Flickr": {
- "domains": [
- "flickr.com"
- ]
- },
- "Flixster": {
- "domains": [
- "flixster.com"
- ]
- },
- "Flipboard": {
- "domains": [
- "flipboard.com"
- ]
- },
- "Fotolog": {
- "domains": [
- "fotolog.com"
- ]
- },
- "Foursquare": {
- "domains": [
- "foursquare.com"
- ]
- },
- "Friends Reunited": {
- "domains": [
- "friendsreunited.com"
- ]
- },
- "Friendster": {
- "domains": [
- "friendster.com"
- ]
- },
- "Gaia Online": {
- "domains": [
- "gaiaonline.com"
- ]
- },
- "Geni": {
- "domains": [
- "geni.com"
- ]
- },
- "GitHub": {
- "domains": [
- "github.com"
- ]
- },
- "Google+": {
- "domains": [
- "url.google.com",
- "plus.google.com",
- "plus.url.google.com"
- ]
- },
- "Habbo": {
- "domains": [
- "habbo.com"
- ]
- },
- "Hacker News": {
- "domains": [
- "news.ycombinator.com"
- ]
- },
- "Hocam.com": {
- "domains": [
- "hocam.com"
- ]
- },
- "Hyves": {
- "domains": [
- "hyves.nl"
- ]
- },
- "Iconosquare": {
- "domains": [
- "iconosquare.com"
- ]
- },
- "Identi.ca": {
- "domains": [
- "identi.ca"
- ]
- },
- "Imgur": {
- "domains": [
- "imgur.com"
- ]
- },
- "Inci Sozluk": {
- "domains": [
- "inci.sozlukspot.com",
- "incisozluk.com",
- "incisozluk.cc"
- ]
- },
- "Instagram": {
- "domains": [
- "instagram.com"
- ]
- },
- "Instela": {
- "domains": [
- "instela.com"
- ]
- },
- "Last.fm": {
- "domains": [
- "lastfm.ru"
- ]
- },
- "LinkedIn": {
- "domains": [
- "linkedin.com",
- "lnkd.in"
- ]
- },
- "LiveJournal": {
- "domains": [
- "livejournal.ru"
- ]
- },
- "Mail.ru": {
- "domains": [
- "my.mail.ru"
- ]
- },
- "Medium": {
- "domains": [
- "medium.com"
- ]
- },
- "Meetup": {
- "domains": [
- "meetup.com"
- ]
- },
- "Messenger": {
- "domains": [
- "messenger.com"
- ]
- },
- "Mixi": {
- "domains": [
- "mixi.jp"
- ]
- },
- "MoiKrug.ru": {
- "domains": [
- "moikrug.ru"
- ]
- },
- "Multiply": {
- "domains": [
- "multiply.com"
- ]
- },
- "MyHeritage": {
- "domains": [
- "myheritage.com"
- ]
- },
- "MyLife": {
- "domains": [
- "mylife.ru"
- ]
- },
- "Myspace": {
- "domains": [
- "myspace.com"
- ]
- },
- "Nasza-klasa.pl": {
- "domains": [
- "nk.pl"
- ]
- },
- "Netlog": {
- "domains": [
- "netlog.com"
- ]
- },
- "Odnoklassniki": {
- "domains": [
- "odnoklassniki.ru",
- "ok.ru"
- ]
- },
- "Orkut": {
- "domains": [
- "orkut.com"
- ]
- },
- "Paper.li": {
- "domains": [
- "paper.li"
- ]
- },
- "Pinterest": {
- "domains": [
- "pinterest.com"
- ]
- },
- "Plaxo": {
- "domains": [
- "plaxo.com"
- ]
- },
- "Pocket": {
- "domains": [
- "getpocket.com"
- ]
- },
- "Polyvore": {
- "domains": [
- "polyvore.com"
- ]
- },
- "Quora": {
- "domains": [
- "quora.com"
- ]
- },
- "Qzone": {
- "domains": [
- "qzone.qq.com"
- ]
- },
- "Reddit": {
- "domains": [
- "reddit.com"
- ]
- },
- "Renren": {
- "domains": [
- "renren.com"
- ]
- },
- "Skyrock": {
- "domains": [
- "skyrock.com"
- ]
- },
- "Snapchat": {
- "domains": [
- "snapchat.com"
- ]
- },
- "Sonico.com": {
- "domains": [
- "sonico.com"
- ]
- },
- "SourceForge": {
- "domains": [
- "sourceforge.net"
- ]
- },
- "StackOverflow": {
- "domains": [
- "stackoverflow.com"
- ]
- },
- "StudiVZ": {
- "domains": [
- "studivz.net"
- ]
- },
- "StumbleUpon": {
- "domains": [
- "stumbleupon.com"
- ]
- },
- "Tagged": {
- "domains": [
- "login.tagged.com"
- ]
- },
- "Taringa!": {
- "domains": [
- "taringa.net"
- ]
- },
- "TikTok": {
- "domains": [
- "tiktok.com",
- "tiktokcdn.com"
- ]
- },
- "Tuenti": {
- "domains": [
- "tuenti.com"
- ]
- },
- "Tumblr": {
- "domains": [
- "tumblr.com",
- "umblr.com",
- "t.umblr.com"
- ]
- },
- "Twitter": {
- "domains": [
- "twitter.com",
- "t.co"
- ]
- },
- "Twitch":{
- "domains": [
- "twitch.tv",
- "twitch.com"
- ]
- },
- "Viadeo": {
- "domains": [
- "viadeo.com"
- ]
- },
- "Vimeo": {
- "domains": [
- "vimeo.com"
- ]
- },
- "Vkontakte": {
- "domains": [
- "vk.com",
- "vkontakte.ru"
- ]
- },
- "Wanelo": {
- "domains": [
- "wanelo.com"
- ]
- },
- "WAYN": {
- "domains": [
- "wayn.com"
- ]
- },
- "WeeWorld": {
- "domains": [
- "weeworld.com"
- ]
- },
- "Weibo": {
- "domains": [
- "weibo.com",
- "t.cn"
- ]
- },
- "Windows Live Spaces": {
- "domains": [
- "login.live.com"
- ]
- },
- "XING": {
- "domains": [
- "xing.com"
- ]
- },
- "Xanga": {
- "domains": [
- "xanga.com"
- ]
- },
- "hi5": {
- "domains": [
- "hi5.com"
- ]
- },
- "myYearbook": {
- "domains": [
- "myyearbook.com"
- ]
- },
- "ITU Sozluk": {
- "domains": [
- "itusozluk.com"
- ]
- },
- "Eksi Sozluk": {
- "domains": [
- "Sozluk.com",
- "sourtimes.org"
- ]
- },
- "Uludag Sozluk": {
- "domains": [
- "uludagsozluk.com",
- "ulusozluk.com"
- ]
- },
- "vKruguDruzei.ru": {
- "domains": [
- "vkrugudruzei.ru"
- ]
- },
- "Whirlpool": {
- "domains": [
- "forums.whirlpool.net.au"
- ]
- },
- "Youtube": {
- "domains": [
- "youtube.com",
- "youtu.be"
- ]
- }
- },
- "unknown": {
- "Google": {
- "domains": [
- "support.google.com",
- "developers.google.com",
- "maps.google.com",
- "accounts.google.com",
- "drive.google.com",
- "sites.google.com",
- "groups.google.com",
- "groups.google.co.uk",
- "news.google.co.uk"
- ]
- },
- "Yahoo!": {
- "domains": [
- "finance.yahoo.com",
- "news.yahoo.com",
- "eurosport.yahoo.com",
- "sports.yahoo.com",
- "astrology.yahoo.com",
- "travel.yahoo.com",
- "answers.yahoo.com",
- "screen.yahoo.com",
- "weather.yahoo.com",
- "messenger.yahoo.com",
- "games.yahoo.com",
- "shopping.yahoo.net",
- "movies.yahoo.com",
- "cars.yahoo.com",
- "lifestyle.yahoo.com",
- "omg.yahoo.com",
- "match.yahoo.net"
- ]
- }
- }
- }
- `
|