add_swisscows_default

v120
harvey186 2023-12-25 17:33:24 +01:00
parent 33460cf494
commit fdc1766a8e
110 changed files with 805 additions and 865 deletions

View File

@ -1032,7 +1032,7 @@ class GeckoEngineSessionTest {
val historyTrackingDelegate: HistoryTrackingDelegate = mock() val historyTrackingDelegate: HistoryTrackingDelegate = mock()
var observedUrl = "https://www.google.com" var observedUrl = "https://leosearch.ddns.net"
var observedTitle = "Google Search" var observedTitle = "Google Search"
val emptyPageUrl = "https://example.com" val emptyPageUrl = "https://example.com"
@ -1083,7 +1083,7 @@ class GeckoEngineSessionTest {
) )
verify(historyTrackingDelegate, never()).onVisited(eq(emptyPageUrl), any()) verify(historyTrackingDelegate, never()).onVisited(eq(emptyPageUrl), any())
assertEquals("https://www.google.com", observedUrl) assertEquals("https://leosearch.ddns.net", observedUrl)
assertEquals("Google Search", observedTitle) assertEquals("Google Search", observedTitle)
} }

View File

@ -3327,7 +3327,7 @@
}, },
{ {
"Google": { "Google": {
"http://www.google.com/": [ "http://leosearch.ddns.net/": [
"2mdn.net", "2mdn.net",
"admeld.com", "admeld.com",
"admob.com", "admob.com",
@ -7683,7 +7683,7 @@
}, },
{ {
"Google": { "Google": {
"http://www.google.com/": [ "http://leosearch.ddns.net/": [
"accounts.google.com", "accounts.google.com",
"apis.google.com", "apis.google.com",
"appengine.google.com", "appengine.google.com",
@ -9007,7 +9007,7 @@
}, },
{ {
"Google": { "Google": {
"http://www.google.com/": [ "http://leosearch.ddns.net/": [
"google-analytics.com", "google-analytics.com",
"postrank.com" "postrank.com"
] ]
@ -10728,7 +10728,7 @@
}, },
{ {
"Google": { "Google": {
"http://www.google.com/": [ "http://leosearch.ddns.net/": [
"developers.google.com", "developers.google.com",
"gmail.com", "gmail.com",
"googlemail.com", "googlemail.com",

View File

@ -350,7 +350,7 @@
] ]
}, },
{ {
"image_url": "https://www.google.com/business/static/icons/favicon.ico?cache=2cf40ae", "image_url": "https://leosearch.ddns.net/business/static/icons/favicon.ico?cache=2cf40ae",
"domains": [ "domains": [
"g.page" "g.page"
] ]

View File

@ -350,7 +350,7 @@
] ]
}, },
{ {
"image_url": "https://www.google.com/business/static/icons/favicon.ico?cache=2cf40ae", "image_url": "https://leosearch.ddns.net/business/static/icons/favicon.ico?cache=2cf40ae",
"domains": [ "domains": [
"g.page" "g.page"
] ]

View File

@ -350,7 +350,7 @@
] ]
}, },
{ {
"image_url": "https://www.google.com/business/static/icons/favicon.ico?cache=2cf40ae", "image_url": "https://leosearch.ddns.net/business/static/icons/favicon.ico?cache=2cf40ae",
"domains": [ "domains": [
"g.page" "g.page"
] ]

View File

@ -350,7 +350,7 @@
] ]
}, },
{ {
"image_url": "https://www.google.com/business/static/icons/favicon.ico?cache=2cf40ae", "image_url": "https://leosearch.ddns.net/business/static/icons/favicon.ico?cache=2cf40ae",
"domains": [ "domains": [
"g.page" "g.page"
] ]

View File

@ -316,7 +316,7 @@ class ContentActionTest {
@Test @Test
fun `Updating custom tab`() { fun `Updating custom tab`() {
val customTab = createCustomTab("https://getpocket.com") val customTab = createCustomTab("https://getpocket.com")
val otherCustomTab = createCustomTab("https://www.google.com") val otherCustomTab = createCustomTab("https://leosearch.ddns.net")
store.dispatch(CustomTabListAction.AddCustomTabAction(customTab)).joinBlocking() store.dispatch(CustomTabListAction.AddCustomTabAction(customTab)).joinBlocking()
store.dispatch(CustomTabListAction.AddCustomTabAction(otherCustomTab)).joinBlocking() store.dispatch(CustomTabListAction.AddCustomTabAction(otherCustomTab)).joinBlocking()

View File

@ -103,7 +103,7 @@ class EngineActionTest {
engineState = EngineState(engineSession = null, engineSessionState = mock()), engineState = EngineState(engineSession = null, engineSessionState = mock()),
) )
val customTab2 = createCustomTab("https://www.google.com").copy( val customTab2 = createCustomTab("https://leosearch.ddns.net").copy(
engineState = EngineState(engineSession = mock(), engineSessionState = mock()), engineState = EngineState(engineSession = mock(), engineSessionState = mock()),
) )

View File

@ -728,7 +728,7 @@ class EngineDelegateMiddlewareTest {
createCustomTab("http://www.theverge.com").copy( createCustomTab("http://www.theverge.com").copy(
engineState = EngineState(engineSession = null, engineSessionState = mock()), engineState = EngineState(engineSession = null, engineSessionState = mock()),
), ),
createCustomTab("https://www.google.com").copy( createCustomTab("https://leosearch.ddns.net").copy(
engineState = EngineState(engineSession = engineSession2, engineSessionState = mock()), engineState = EngineState(engineSession = engineSession2, engineSessionState = mock()),
), ),
), ),

View File

@ -183,7 +183,7 @@ class SelectorsKtTest {
val state = BrowserState( val state = BrowserState(
tabs = listOf(tab1, privateTab1, tab2, privateTab2), tabs = listOf(tab1, privateTab1, tab2, privateTab2),
customTabs = listOf(createCustomTab("https://www.google.com")), customTabs = listOf(createCustomTab("https://leosearch.ddns.net")),
) )
assertEquals(listOf(tab1, tab2), state.getNormalOrPrivateTabs(private = false)) assertEquals(listOf(tab1, tab2), state.getNormalOrPrivateTabs(private = false))
@ -202,7 +202,7 @@ class SelectorsKtTest {
val state = BrowserState( val state = BrowserState(
tabs = listOf(tab1, privateTab1, tab2, privateTab2), tabs = listOf(tab1, privateTab1, tab2, privateTab2),
customTabs = listOf(createCustomTab("https://www.google.com")), customTabs = listOf(createCustomTab("https://leosearch.ddns.net")),
) )
assertEquals(listOf(tab1, tab2), state.normalTabs) assertEquals(listOf(tab1, tab2), state.normalTabs)

View File

@ -864,7 +864,7 @@ class PlacesHistoryStorageTest {
val metaKey = HistoryMetadataKey( val metaKey = HistoryMetadataKey(
url = "https://doc.rust-lang.org/std/macro.assert_eq.html", url = "https://doc.rust-lang.org/std/macro.assert_eq.html",
searchTerm = "rust assert_eq", searchTerm = "rust assert_eq",
referrerUrl = "http://www.google.com/", referrerUrl = "http://leosearch.ddns.net/",
) )
assertNull(history.getLatestHistoryMetadataForUrl(metaKey.url)) assertNull(history.getLatestHistoryMetadataForUrl(metaKey.url))
@ -891,7 +891,7 @@ class PlacesHistoryStorageTest {
val metaKey2 = HistoryMetadataKey( val metaKey2 = HistoryMetadataKey(
url = "https://www.youtube.com/watch?v=F7PQdCDiE44", url = "https://www.youtube.com/watch?v=F7PQdCDiE44",
searchTerm = "crisis", searchTerm = "crisis",
referrerUrl = "https://www.google.com/search?client=firefox-b-d&q=dw+crisis", referrerUrl = "https://leosearch.ddns.net/search?client=firefox-b-d&q=dw+crisis",
) )
history.noteHistoryMetadataObservation(metaKey2, HistoryMetadataObservation.DocumentTypeObservation(DocumentType.Media)) history.noteHistoryMetadataObservation(metaKey2, HistoryMetadataObservation.DocumentTypeObservation(DocumentType.Media))
history.noteHistoryMetadataObservation(metaKey2, HistoryMetadataObservation.ViewTimeObservation(30000)) history.noteHistoryMetadataObservation(metaKey2, HistoryMetadataObservation.ViewTimeObservation(30000))
@ -984,7 +984,7 @@ class PlacesHistoryStorageTest {
val metaKey3 = HistoryMetadataKey( val metaKey3 = HistoryMetadataKey(
url = "https://www.ifixit.com/News/35377/which-wireless-earbuds-are-the-least-evil", url = "https://www.ifixit.com/News/35377/which-wireless-earbuds-are-the-least-evil",
searchTerm = "repairable wireless headset", searchTerm = "repairable wireless headset",
referrerUrl = "http://www.google.com", referrerUrl = "http://leosearch.ddns.net",
) )
history.noteHistoryMetadataObservation(metaKey3, HistoryMetadataObservation.DocumentTypeObservation(DocumentType.Regular)) history.noteHistoryMetadataObservation(metaKey3, HistoryMetadataObservation.DocumentTypeObservation(DocumentType.Regular))
history.noteHistoryMetadataObservation(metaKey3, HistoryMetadataObservation.ViewTimeObservation(2000)) history.noteHistoryMetadataObservation(metaKey3, HistoryMetadataObservation.ViewTimeObservation(2000))
@ -1030,7 +1030,7 @@ class PlacesHistoryStorageTest {
val metaKey2 = HistoryMetadataKey( val metaKey2 = HistoryMetadataKey(
url = "https://www.ifixit.com/News/35377/which-wireless-earbuds-are-the-least-evil", url = "https://www.ifixit.com/News/35377/which-wireless-earbuds-are-the-least-evil",
searchTerm = "repairable wireless headset", searchTerm = "repairable wireless headset",
referrerUrl = "http://www.google.com/", referrerUrl = "http://leosearch.ddns.net/",
) )
history.noteHistoryMetadataObservation(metaKey2, HistoryMetadataObservation.DocumentTypeObservation(DocumentType.Regular)) history.noteHistoryMetadataObservation(metaKey2, HistoryMetadataObservation.DocumentTypeObservation(DocumentType.Regular))
history.noteHistoryMetadataObservation(metaKey2, HistoryMetadataObservation.ViewTimeObservation(2000)) history.noteHistoryMetadataObservation(metaKey2, HistoryMetadataObservation.ViewTimeObservation(2000))
@ -1098,7 +1098,7 @@ class PlacesHistoryStorageTest {
HistoryMetadataKey( HistoryMetadataKey(
url = "https://www.ifixit.com/News/35377/which-wireless-earbuds-are-the-least-evil", url = "https://www.ifixit.com/News/35377/which-wireless-earbuds-are-the-least-evil",
searchTerm = "repairable wireless headset", searchTerm = "repairable wireless headset",
referrerUrl = "http://www.google.com/", referrerUrl = "http://leosearch.ddns.net/",
), ),
) { ) {
history.noteHistoryMetadataObservation( history.noteHistoryMetadataObservation(

View File

@ -258,7 +258,7 @@ class AddonTest {
"*://www.youtube-nocookie.com/*", "*://www.youtube-nocookie.com/*",
"*://www.vimeo.com/*", "*://www.vimeo.com/*",
"https://mozilla.org/a/b/c/", "https://mozilla.org/a/b/c/",
"*://www.google.com.do/*", "*://leosearch.ddns.net.do/*",
) )
expectedString = listOf("www.youtube.com", "www.youtube-nocookie.com", "www.vimeo.com", "mozilla.org").map { expectedString = listOf("www.youtube.com", "www.youtube-nocookie.com", "www.vimeo.com", "mozilla.org").map {
@ -276,7 +276,7 @@ class AddonTest {
"*://www.youtube-nocookie.com/*", "*://www.youtube-nocookie.com/*",
"*://www.vimeo.com/*", "*://www.vimeo.com/*",
"https://mozilla.org/a/b/c/", "https://mozilla.org/a/b/c/",
"*://www.google.com.do/*", "*://leosearch.ddns.net.do/*",
"*://www.google.co.ar/*", "*://www.google.co.ar/*",
) )
@ -313,7 +313,7 @@ class AddonTest {
"*://twitter.com/*", "*://twitter.com/*",
"*://tweetdeck.twitter.com/*", "*://tweetdeck.twitter.com/*",
"https://mozilla.org/a/b/c/", "https://mozilla.org/a/b/c/",
"https://www.google.com.ag/*", "https://leosearch.ddns.net.ag/*",
"https://www.google.co.ck/*", "https://www.google.co.ck/*",
) )

View File

@ -538,13 +538,13 @@ class AppLinksInterceptorTest {
launchFromInterceptor = true, launchFromInterceptor = true,
) )
assert(appLinksInterceptor.isSameDomain("maps.google.com", "www.google.com")) assert(appLinksInterceptor.isSameDomain("maps.google.com", "leosearch.ddns.net"))
assert(appLinksInterceptor.isSameDomain("mobile.mozilla.com", "www.mozilla.com")) assert(appLinksInterceptor.isSameDomain("mobile.mozilla.com", "www.mozilla.com"))
assert(appLinksInterceptor.isSameDomain("m.mozilla.com", "maps.mozilla.com")) assert(appLinksInterceptor.isSameDomain("m.mozilla.com", "maps.mozilla.com"))
assertFalse(appLinksInterceptor.isSameDomain("www.google.ca", "www.google.com")) assertFalse(appLinksInterceptor.isSameDomain("www.google.ca", "leosearch.ddns.net"))
assertFalse(appLinksInterceptor.isSameDomain("maps.google.ca", "m.google.com")) assertFalse(appLinksInterceptor.isSameDomain("maps.google.ca", "m.google.com"))
assertFalse(appLinksInterceptor.isSameDomain("accounts.google.com", "www.google.com")) assertFalse(appLinksInterceptor.isSameDomain("accounts.google.com", "leosearch.ddns.net"))
} }
@Test @Test

View File

@ -259,7 +259,7 @@ class RecentlyClosedMiddlewareTest {
store.dispatch(TabListAction.AddTabAction(createTab("https://www.firefox.com", id = "tab2"))).joinBlocking() store.dispatch(TabListAction.AddTabAction(createTab("https://www.firefox.com", id = "tab2"))).joinBlocking()
store.dispatch(TabListAction.AddTabAction(createTab("https://getpocket.com", id = "tab3"))).joinBlocking() store.dispatch(TabListAction.AddTabAction(createTab("https://getpocket.com", id = "tab3"))).joinBlocking()
store.dispatch(TabListAction.AddTabAction(createTab("https://theverge.com", id = "tab4"))).joinBlocking() store.dispatch(TabListAction.AddTabAction(createTab("https://theverge.com", id = "tab4"))).joinBlocking()
store.dispatch(TabListAction.AddTabAction(createTab("https://www.google.com", id = "tab5"))).joinBlocking() store.dispatch(TabListAction.AddTabAction(createTab("https://leosearch.ddns.net", id = "tab5"))).joinBlocking()
assertEquals(5, store.state.tabs.size) assertEquals(5, store.state.tabs.size)
store.dispatch(TabListAction.RemoveTabAction("tab2")).joinBlocking() store.dispatch(TabListAction.RemoveTabAction("tab2")).joinBlocking()

View File

@ -11,36 +11,36 @@
{ {
"matches": ["https://*/*"], "matches": ["https://*/*"],
"include_globs": [ "include_globs": [
"https://www.google.com/search*", "https://leosearch.ddns.net/search*",
"https://www.google.ad/search*", "https://www.google.ad/search*",
"https://www.google.ae/search*", "https://www.google.ae/search*",
"https://www.google.com.af/search*", "https://leosearch.ddns.net.af/search*",
"https://www.google.com.ag/search*", "https://leosearch.ddns.net.ag/search*",
"https://www.google.com.ai/search*", "https://leosearch.ddns.net.ai/search*",
"https://www.google.al/search*", "https://www.google.al/search*",
"https://www.google.am/search*", "https://www.google.am/search*",
"https://www.google.co.ao/search*", "https://www.google.co.ao/search*",
"https://www.google.com.ar/search*", "https://leosearch.ddns.net.ar/search*",
"https://www.google.as/search*", "https://www.google.as/search*",
"https://www.google.at/search*", "https://www.google.at/search*",
"https://www.google.com.au/search*", "https://leosearch.ddns.net.au/search*",
"https://www.google.az/search*", "https://www.google.az/search*",
"https://www.google.ba/search*", "https://www.google.ba/search*",
"https://www.google.com.bd/search*", "https://leosearch.ddns.net.bd/search*",
"https://www.google.be/search*", "https://www.google.be/search*",
"https://www.google.bf/search*", "https://www.google.bf/search*",
"https://www.google.bg/search*", "https://www.google.bg/search*",
"https://www.google.com.bh/search*", "https://leosearch.ddns.net.bh/search*",
"https://www.google.bi/search*", "https://www.google.bi/search*",
"https://www.google.bj/search*", "https://www.google.bj/search*",
"https://www.google.com.bn/search*", "https://leosearch.ddns.net.bn/search*",
"https://www.google.com.bo/search*", "https://leosearch.ddns.net.bo/search*",
"https://www.google.com.br/search*", "https://leosearch.ddns.net.br/search*",
"https://www.google.bs/search*", "https://www.google.bs/search*",
"https://www.google.bt/search*", "https://www.google.bt/search*",
"https://www.google.co.bw/search*", "https://www.google.co.bw/search*",
"https://www.google.by/search*", "https://www.google.by/search*",
"https://www.google.com.bz/search*", "https://leosearch.ddns.net.bz/search*",
"https://www.google.ca/search*", "https://www.google.ca/search*",
"https://www.google.cd/search*", "https://www.google.cd/search*",
"https://www.google.cf/search*", "https://www.google.cf/search*",
@ -51,38 +51,38 @@
"https://www.google.cl/search*", "https://www.google.cl/search*",
"https://www.google.cm/search*", "https://www.google.cm/search*",
"https://www.google.cn/search*", "https://www.google.cn/search*",
"https://www.google.com.co/search*", "https://leosearch.ddns.net.co/search*",
"https://www.google.co.cr/search*", "https://www.google.co.cr/search*",
"https://www.google.com.cu/search*", "https://leosearch.ddns.net.cu/search*",
"https://www.google.cv/search*", "https://www.google.cv/search*",
"https://www.google.com.cy/search*", "https://leosearch.ddns.net.cy/search*",
"https://www.google.cz/search*", "https://www.google.cz/search*",
"https://www.google.de/search*", "https://www.google.de/search*",
"https://www.google.dj/search*", "https://www.google.dj/search*",
"https://www.google.dk/search*", "https://www.google.dk/search*",
"https://www.google.dm/search*", "https://www.google.dm/search*",
"https://www.google.com.do/search*", "https://leosearch.ddns.net.do/search*",
"https://www.google.dz/search*", "https://www.google.dz/search*",
"https://www.google.com.ec/search*", "https://leosearch.ddns.net.ec/search*",
"https://www.google.ee/search*", "https://www.google.ee/search*",
"https://www.google.com.eg/search*", "https://leosearch.ddns.net.eg/search*",
"https://www.google.es/search*", "https://www.google.es/search*",
"https://www.google.com.et/search*", "https://leosearch.ddns.net.et/search*",
"https://www.google.fi/search*", "https://www.google.fi/search*",
"https://www.google.com.fj/search*", "https://leosearch.ddns.net.fj/search*",
"https://www.google.fm/search*", "https://www.google.fm/search*",
"https://www.google.fr/search*", "https://www.google.fr/search*",
"https://www.google.ga/search*", "https://www.google.ga/search*",
"https://www.google.ge/search*", "https://www.google.ge/search*",
"https://www.google.gg/search*", "https://www.google.gg/search*",
"https://www.google.com.gh/search*", "https://leosearch.ddns.net.gh/search*",
"https://www.google.com.gi/search*", "https://leosearch.ddns.net.gi/search*",
"https://www.google.gl/search*", "https://www.google.gl/search*",
"https://www.google.gm/search*", "https://www.google.gm/search*",
"https://www.google.gr/search*", "https://www.google.gr/search*",
"https://www.google.com.gt/search*", "https://leosearch.ddns.net.gt/search*",
"https://www.google.gy/search*", "https://www.google.gy/search*",
"https://www.google.com.hk/search*", "https://leosearch.ddns.net.hk/search*",
"https://www.google.hn/search*", "https://www.google.hn/search*",
"https://www.google.hr/search*", "https://www.google.hr/search*",
"https://www.google.ht/search*", "https://www.google.ht/search*",
@ -96,104 +96,104 @@
"https://www.google.is/search*", "https://www.google.is/search*",
"https://www.google.it/search*", "https://www.google.it/search*",
"https://www.google.je/search*", "https://www.google.je/search*",
"https://www.google.com.jm/search*", "https://leosearch.ddns.net.jm/search*",
"https://www.google.jo/search*", "https://www.google.jo/search*",
"https://www.google.co.jp/search*", "https://www.google.co.jp/search*",
"https://www.google.co.ke/search*", "https://www.google.co.ke/search*",
"https://www.google.com.kh/search*", "https://leosearch.ddns.net.kh/search*",
"https://www.google.ki/search*", "https://www.google.ki/search*",
"https://www.google.kg/search*", "https://www.google.kg/search*",
"https://www.google.co.kr/search*", "https://www.google.co.kr/search*",
"https://www.google.com.kw/search*", "https://leosearch.ddns.net.kw/search*",
"https://www.google.kz/search*", "https://www.google.kz/search*",
"https://www.google.la/search*", "https://www.google.la/search*",
"https://www.google.com.lb/search*", "https://leosearch.ddns.net.lb/search*",
"https://www.google.li/search*", "https://www.google.li/search*",
"https://www.google.lk/search*", "https://www.google.lk/search*",
"https://www.google.co.ls/search*", "https://www.google.co.ls/search*",
"https://www.google.lt/search*", "https://www.google.lt/search*",
"https://www.google.lu/search*", "https://www.google.lu/search*",
"https://www.google.lv/search*", "https://www.google.lv/search*",
"https://www.google.com.ly/search*", "https://leosearch.ddns.net.ly/search*",
"https://www.google.co.ma/search*", "https://www.google.co.ma/search*",
"https://www.google.md/search*", "https://www.google.md/search*",
"https://www.google.me/search*", "https://www.google.me/search*",
"https://www.google.mg/search*", "https://www.google.mg/search*",
"https://www.google.mk/search*", "https://www.google.mk/search*",
"https://www.google.ml/search*", "https://www.google.ml/search*",
"https://www.google.com.mm/search*", "https://leosearch.ddns.net.mm/search*",
"https://www.google.mn/search*", "https://www.google.mn/search*",
"https://www.google.ms/search*", "https://www.google.ms/search*",
"https://www.google.com.mt/search*", "https://leosearch.ddns.net.mt/search*",
"https://www.google.mu/search*", "https://www.google.mu/search*",
"https://www.google.mv/search*", "https://www.google.mv/search*",
"https://www.google.mw/search*", "https://www.google.mw/search*",
"https://www.google.com.mx/search*", "https://leosearch.ddns.net.mx/search*",
"https://www.google.com.my/search*", "https://leosearch.ddns.net.my/search*",
"https://www.google.co.mz/search*", "https://www.google.co.mz/search*",
"https://www.google.com.na/search*", "https://leosearch.ddns.net.na/search*",
"https://www.google.com.ng/search*", "https://leosearch.ddns.net.ng/search*",
"https://www.google.com.ni/search*", "https://leosearch.ddns.net.ni/search*",
"https://www.google.ne/search*", "https://www.google.ne/search*",
"https://www.google.nl/search*", "https://www.google.nl/search*",
"https://www.google.no/search*", "https://www.google.no/search*",
"https://www.google.com.np/search*", "https://leosearch.ddns.net.np/search*",
"https://www.google.nr/search*", "https://www.google.nr/search*",
"https://www.google.nu/search*", "https://www.google.nu/search*",
"https://www.google.co.nz/search*", "https://www.google.co.nz/search*",
"https://www.google.com.om/search*", "https://leosearch.ddns.net.om/search*",
"https://www.google.com.pa/search*", "https://leosearch.ddns.net.pa/search*",
"https://www.google.com.pe/search*", "https://leosearch.ddns.net.pe/search*",
"https://www.google.com.pg/search*", "https://leosearch.ddns.net.pg/search*",
"https://www.google.com.ph/search*", "https://leosearch.ddns.net.ph/search*",
"https://www.google.com.pk/search*", "https://leosearch.ddns.net.pk/search*",
"https://www.google.pl/search*", "https://www.google.pl/search*",
"https://www.google.pn/search*", "https://www.google.pn/search*",
"https://www.google.com.pr/search*", "https://leosearch.ddns.net.pr/search*",
"https://www.google.ps/search*", "https://www.google.ps/search*",
"https://www.google.pt/search*", "https://www.google.pt/search*",
"https://www.google.com.py/search*", "https://leosearch.ddns.net.py/search*",
"https://www.google.com.qa/search*", "https://leosearch.ddns.net.qa/search*",
"https://www.google.ro/search*", "https://www.google.ro/search*",
"https://www.google.ru/search*", "https://www.google.ru/search*",
"https://www.google.rw/search*", "https://www.google.rw/search*",
"https://www.google.com.sa/search*", "https://leosearch.ddns.net.sa/search*",
"https://www.google.com.sb/search*", "https://leosearch.ddns.net.sb/search*",
"https://www.google.sc/search*", "https://www.google.sc/search*",
"https://www.google.se/search*", "https://www.google.se/search*",
"https://www.google.com.sg/search*", "https://leosearch.ddns.net.sg/search*",
"https://www.google.sh/search*", "https://www.google.sh/search*",
"https://www.google.si/search*", "https://www.google.si/search*",
"https://www.google.sk/search*", "https://www.google.sk/search*",
"https://www.google.com.sl/search*", "https://leosearch.ddns.net.sl/search*",
"https://www.google.sn/search*", "https://www.google.sn/search*",
"https://www.google.so/search*", "https://www.google.so/search*",
"https://www.google.sm/search*", "https://www.google.sm/search*",
"https://www.google.sr/search*", "https://www.google.sr/search*",
"https://www.google.st/search*", "https://www.google.st/search*",
"https://www.google.com.sv/search*", "https://leosearch.ddns.net.sv/search*",
"https://www.google.td/search*", "https://www.google.td/search*",
"https://www.google.tg/search*", "https://www.google.tg/search*",
"https://www.google.co.th/search*", "https://www.google.co.th/search*",
"https://www.google.com.tj/search*", "https://leosearch.ddns.net.tj/search*",
"https://www.google.tl/search*", "https://www.google.tl/search*",
"https://www.google.tm/search*", "https://www.google.tm/search*",
"https://www.google.tn/search*", "https://www.google.tn/search*",
"https://www.google.to/search*", "https://www.google.to/search*",
"https://www.google.com.tr/search*", "https://leosearch.ddns.net.tr/search*",
"https://www.google.tt/search*", "https://www.google.tt/search*",
"https://www.google.com.tw/search*", "https://leosearch.ddns.net.tw/search*",
"https://www.google.co.tz/search*", "https://www.google.co.tz/search*",
"https://www.google.com.ua/search*", "https://leosearch.ddns.net.ua/search*",
"https://www.google.co.ug/search*", "https://www.google.co.ug/search*",
"https://www.google.co.uk/search*", "https://www.google.co.uk/search*",
"https://www.google.com.uy/search*", "https://leosearch.ddns.net.uy/search*",
"https://www.google.co.uz/search*", "https://www.google.co.uz/search*",
"https://www.google.com.vc/search*", "https://leosearch.ddns.net.vc/search*",
"https://www.google.co.ve/search*", "https://www.google.co.ve/search*",
"https://www.google.vg/search*", "https://www.google.vg/search*",
"https://www.google.co.vi/search*", "https://www.google.co.vi/search*",
"https://www.google.com.vn/search*", "https://leosearch.ddns.net.vn/search*",
"https://www.google.vu/search*", "https://www.google.vu/search*",
"https://www.google.ws/search*", "https://www.google.ws/search*",
"https://www.google.rs/search*", "https://www.google.rs/search*",

View File

@ -11,36 +11,36 @@
{ {
"matches": ["https://*/*"], "matches": ["https://*/*"],
"include_globs": [ "include_globs": [
"https://www.google.com/search*", "https://leosearch.ddns.net/search*",
"https://www.google.ad/search*", "https://www.google.ad/search*",
"https://www.google.ae/search*", "https://www.google.ae/search*",
"https://www.google.com.af/search*", "https://leosearch.ddns.net.af/search*",
"https://www.google.com.ag/search*", "https://leosearch.ddns.net.ag/search*",
"https://www.google.com.ai/search*", "https://leosearch.ddns.net.ai/search*",
"https://www.google.al/search*", "https://www.google.al/search*",
"https://www.google.am/search*", "https://www.google.am/search*",
"https://www.google.co.ao/search*", "https://www.google.co.ao/search*",
"https://www.google.com.ar/search*", "https://leosearch.ddns.net.ar/search*",
"https://www.google.as/search*", "https://www.google.as/search*",
"https://www.google.at/search*", "https://www.google.at/search*",
"https://www.google.com.au/search*", "https://leosearch.ddns.net.au/search*",
"https://www.google.az/search*", "https://www.google.az/search*",
"https://www.google.ba/search*", "https://www.google.ba/search*",
"https://www.google.com.bd/search*", "https://leosearch.ddns.net.bd/search*",
"https://www.google.be/search*", "https://www.google.be/search*",
"https://www.google.bf/search*", "https://www.google.bf/search*",
"https://www.google.bg/search*", "https://www.google.bg/search*",
"https://www.google.com.bh/search*", "https://leosearch.ddns.net.bh/search*",
"https://www.google.bi/search*", "https://www.google.bi/search*",
"https://www.google.bj/search*", "https://www.google.bj/search*",
"https://www.google.com.bn/search*", "https://leosearch.ddns.net.bn/search*",
"https://www.google.com.bo/search*", "https://leosearch.ddns.net.bo/search*",
"https://www.google.com.br/search*", "https://leosearch.ddns.net.br/search*",
"https://www.google.bs/search*", "https://www.google.bs/search*",
"https://www.google.bt/search*", "https://www.google.bt/search*",
"https://www.google.co.bw/search*", "https://www.google.co.bw/search*",
"https://www.google.by/search*", "https://www.google.by/search*",
"https://www.google.com.bz/search*", "https://leosearch.ddns.net.bz/search*",
"https://www.google.ca/search*", "https://www.google.ca/search*",
"https://www.google.cd/search*", "https://www.google.cd/search*",
"https://www.google.cf/search*", "https://www.google.cf/search*",
@ -51,38 +51,38 @@
"https://www.google.cl/search*", "https://www.google.cl/search*",
"https://www.google.cm/search*", "https://www.google.cm/search*",
"https://www.google.cn/search*", "https://www.google.cn/search*",
"https://www.google.com.co/search*", "https://leosearch.ddns.net.co/search*",
"https://www.google.co.cr/search*", "https://www.google.co.cr/search*",
"https://www.google.com.cu/search*", "https://leosearch.ddns.net.cu/search*",
"https://www.google.cv/search*", "https://www.google.cv/search*",
"https://www.google.com.cy/search*", "https://leosearch.ddns.net.cy/search*",
"https://www.google.cz/search*", "https://www.google.cz/search*",
"https://www.google.de/search*", "https://www.google.de/search*",
"https://www.google.dj/search*", "https://www.google.dj/search*",
"https://www.google.dk/search*", "https://www.google.dk/search*",
"https://www.google.dm/search*", "https://www.google.dm/search*",
"https://www.google.com.do/search*", "https://leosearch.ddns.net.do/search*",
"https://www.google.dz/search*", "https://www.google.dz/search*",
"https://www.google.com.ec/search*", "https://leosearch.ddns.net.ec/search*",
"https://www.google.ee/search*", "https://www.google.ee/search*",
"https://www.google.com.eg/search*", "https://leosearch.ddns.net.eg/search*",
"https://www.google.es/search*", "https://www.google.es/search*",
"https://www.google.com.et/search*", "https://leosearch.ddns.net.et/search*",
"https://www.google.fi/search*", "https://www.google.fi/search*",
"https://www.google.com.fj/search*", "https://leosearch.ddns.net.fj/search*",
"https://www.google.fm/search*", "https://www.google.fm/search*",
"https://www.google.fr/search*", "https://www.google.fr/search*",
"https://www.google.ga/search*", "https://www.google.ga/search*",
"https://www.google.ge/search*", "https://www.google.ge/search*",
"https://www.google.gg/search*", "https://www.google.gg/search*",
"https://www.google.com.gh/search*", "https://leosearch.ddns.net.gh/search*",
"https://www.google.com.gi/search*", "https://leosearch.ddns.net.gi/search*",
"https://www.google.gl/search*", "https://www.google.gl/search*",
"https://www.google.gm/search*", "https://www.google.gm/search*",
"https://www.google.gr/search*", "https://www.google.gr/search*",
"https://www.google.com.gt/search*", "https://leosearch.ddns.net.gt/search*",
"https://www.google.gy/search*", "https://www.google.gy/search*",
"https://www.google.com.hk/search*", "https://leosearch.ddns.net.hk/search*",
"https://www.google.hn/search*", "https://www.google.hn/search*",
"https://www.google.hr/search*", "https://www.google.hr/search*",
"https://www.google.ht/search*", "https://www.google.ht/search*",
@ -96,104 +96,104 @@
"https://www.google.is/search*", "https://www.google.is/search*",
"https://www.google.it/search*", "https://www.google.it/search*",
"https://www.google.je/search*", "https://www.google.je/search*",
"https://www.google.com.jm/search*", "https://leosearch.ddns.net.jm/search*",
"https://www.google.jo/search*", "https://www.google.jo/search*",
"https://www.google.co.jp/search*", "https://www.google.co.jp/search*",
"https://www.google.co.ke/search*", "https://www.google.co.ke/search*",
"https://www.google.com.kh/search*", "https://leosearch.ddns.net.kh/search*",
"https://www.google.ki/search*", "https://www.google.ki/search*",
"https://www.google.kg/search*", "https://www.google.kg/search*",
"https://www.google.co.kr/search*", "https://www.google.co.kr/search*",
"https://www.google.com.kw/search*", "https://leosearch.ddns.net.kw/search*",
"https://www.google.kz/search*", "https://www.google.kz/search*",
"https://www.google.la/search*", "https://www.google.la/search*",
"https://www.google.com.lb/search*", "https://leosearch.ddns.net.lb/search*",
"https://www.google.li/search*", "https://www.google.li/search*",
"https://www.google.lk/search*", "https://www.google.lk/search*",
"https://www.google.co.ls/search*", "https://www.google.co.ls/search*",
"https://www.google.lt/search*", "https://www.google.lt/search*",
"https://www.google.lu/search*", "https://www.google.lu/search*",
"https://www.google.lv/search*", "https://www.google.lv/search*",
"https://www.google.com.ly/search*", "https://leosearch.ddns.net.ly/search*",
"https://www.google.co.ma/search*", "https://www.google.co.ma/search*",
"https://www.google.md/search*", "https://www.google.md/search*",
"https://www.google.me/search*", "https://www.google.me/search*",
"https://www.google.mg/search*", "https://www.google.mg/search*",
"https://www.google.mk/search*", "https://www.google.mk/search*",
"https://www.google.ml/search*", "https://www.google.ml/search*",
"https://www.google.com.mm/search*", "https://leosearch.ddns.net.mm/search*",
"https://www.google.mn/search*", "https://www.google.mn/search*",
"https://www.google.ms/search*", "https://www.google.ms/search*",
"https://www.google.com.mt/search*", "https://leosearch.ddns.net.mt/search*",
"https://www.google.mu/search*", "https://www.google.mu/search*",
"https://www.google.mv/search*", "https://www.google.mv/search*",
"https://www.google.mw/search*", "https://www.google.mw/search*",
"https://www.google.com.mx/search*", "https://leosearch.ddns.net.mx/search*",
"https://www.google.com.my/search*", "https://leosearch.ddns.net.my/search*",
"https://www.google.co.mz/search*", "https://www.google.co.mz/search*",
"https://www.google.com.na/search*", "https://leosearch.ddns.net.na/search*",
"https://www.google.com.ng/search*", "https://leosearch.ddns.net.ng/search*",
"https://www.google.com.ni/search*", "https://leosearch.ddns.net.ni/search*",
"https://www.google.ne/search*", "https://www.google.ne/search*",
"https://www.google.nl/search*", "https://www.google.nl/search*",
"https://www.google.no/search*", "https://www.google.no/search*",
"https://www.google.com.np/search*", "https://leosearch.ddns.net.np/search*",
"https://www.google.nr/search*", "https://www.google.nr/search*",
"https://www.google.nu/search*", "https://www.google.nu/search*",
"https://www.google.co.nz/search*", "https://www.google.co.nz/search*",
"https://www.google.com.om/search*", "https://leosearch.ddns.net.om/search*",
"https://www.google.com.pa/search*", "https://leosearch.ddns.net.pa/search*",
"https://www.google.com.pe/search*", "https://leosearch.ddns.net.pe/search*",
"https://www.google.com.pg/search*", "https://leosearch.ddns.net.pg/search*",
"https://www.google.com.ph/search*", "https://leosearch.ddns.net.ph/search*",
"https://www.google.com.pk/search*", "https://leosearch.ddns.net.pk/search*",
"https://www.google.pl/search*", "https://www.google.pl/search*",
"https://www.google.pn/search*", "https://www.google.pn/search*",
"https://www.google.com.pr/search*", "https://leosearch.ddns.net.pr/search*",
"https://www.google.ps/search*", "https://www.google.ps/search*",
"https://www.google.pt/search*", "https://www.google.pt/search*",
"https://www.google.com.py/search*", "https://leosearch.ddns.net.py/search*",
"https://www.google.com.qa/search*", "https://leosearch.ddns.net.qa/search*",
"https://www.google.ro/search*", "https://www.google.ro/search*",
"https://www.google.ru/search*", "https://www.google.ru/search*",
"https://www.google.rw/search*", "https://www.google.rw/search*",
"https://www.google.com.sa/search*", "https://leosearch.ddns.net.sa/search*",
"https://www.google.com.sb/search*", "https://leosearch.ddns.net.sb/search*",
"https://www.google.sc/search*", "https://www.google.sc/search*",
"https://www.google.se/search*", "https://www.google.se/search*",
"https://www.google.com.sg/search*", "https://leosearch.ddns.net.sg/search*",
"https://www.google.sh/search*", "https://www.google.sh/search*",
"https://www.google.si/search*", "https://www.google.si/search*",
"https://www.google.sk/search*", "https://www.google.sk/search*",
"https://www.google.com.sl/search*", "https://leosearch.ddns.net.sl/search*",
"https://www.google.sn/search*", "https://www.google.sn/search*",
"https://www.google.so/search*", "https://www.google.so/search*",
"https://www.google.sm/search*", "https://www.google.sm/search*",
"https://www.google.sr/search*", "https://www.google.sr/search*",
"https://www.google.st/search*", "https://www.google.st/search*",
"https://www.google.com.sv/search*", "https://leosearch.ddns.net.sv/search*",
"https://www.google.td/search*", "https://www.google.td/search*",
"https://www.google.tg/search*", "https://www.google.tg/search*",
"https://www.google.co.th/search*", "https://www.google.co.th/search*",
"https://www.google.com.tj/search*", "https://leosearch.ddns.net.tj/search*",
"https://www.google.tl/search*", "https://www.google.tl/search*",
"https://www.google.tm/search*", "https://www.google.tm/search*",
"https://www.google.tn/search*", "https://www.google.tn/search*",
"https://www.google.to/search*", "https://www.google.to/search*",
"https://www.google.com.tr/search*", "https://leosearch.ddns.net.tr/search*",
"https://www.google.tt/search*", "https://www.google.tt/search*",
"https://www.google.com.tw/search*", "https://leosearch.ddns.net.tw/search*",
"https://www.google.co.tz/search*", "https://www.google.co.tz/search*",
"https://www.google.com.ua/search*", "https://leosearch.ddns.net.ua/search*",
"https://www.google.co.ug/search*", "https://www.google.co.ug/search*",
"https://www.google.co.uk/search*", "https://www.google.co.uk/search*",
"https://www.google.com.uy/search*", "https://leosearch.ddns.net.uy/search*",
"https://www.google.co.uz/search*", "https://www.google.co.uz/search*",
"https://www.google.com.vc/search*", "https://leosearch.ddns.net.vc/search*",
"https://www.google.co.ve/search*", "https://www.google.co.ve/search*",
"https://www.google.vg/search*", "https://www.google.vg/search*",
"https://www.google.co.vi/search*", "https://www.google.co.vi/search*",
"https://www.google.com.vn/search*", "https://leosearch.ddns.net.vn/search*",
"https://www.google.vu/search*", "https://www.google.vu/search*",
"https://www.google.ws/search*", "https://www.google.ws/search*",
"https://www.google.rs/search*", "https://www.google.rs/search*",

View File

@ -6,12 +6,12 @@
<ShortName>Google</ShortName> <ShortName>Google</ShortName>
<InputEncoding>UTF-8</InputEncoding> <InputEncoding>UTF-8</InputEncoding>
<Image width="16" height="16">data:image/png;base64,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</Image> <Image width="16" height="16">data:image/png;base64,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</Image>
<Url type="application/x-suggestions+json" method="GET" template="https://www.google.com/complete/search?client=firefox&amp;q={searchTerms}"/> <Url type="application/x-suggestions+json" method="GET" template="https://leosearch.ddns.net/complete/search?client=firefox&amp;q={searchTerms}"/>
<Url type="text/html" method="GET" template="https://www.google.com/search"> <Url type="text/html" method="GET" template="https://leosearch.ddns.net/search">
<Param name="q" value="{searchTerms}"/> <Param name="q" value="{searchTerms}"/>
<Param name="ie" value="utf-8"/> <Param name="ie" value="utf-8"/>
<Param name="oe" value="utf-8"/> <Param name="oe" value="utf-8"/>
<Param name="client" value="firefox-b-1-m"/> <Param name="client" value="firefox-b-1-m"/>
</Url> </Url>
<SearchForm>https://www.google.com</SearchForm> <SearchForm>https://leosearch.ddns.net</SearchForm>
</SearchPlugin> </SearchPlugin>

View File

@ -6,12 +6,12 @@
<ShortName>Google</ShortName> <ShortName>Google</ShortName>
<InputEncoding>UTF-8</InputEncoding> <InputEncoding>UTF-8</InputEncoding>
<Image width="16" height="16">data:image/png;base64,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</Image> <Image width="16" height="16">data:image/png;base64,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</Image>
<Url type="application/x-suggestions+json" method="GET" template="https://www.google.com/complete/search?client=firefox&amp;q={searchTerms}"/> <Url type="application/x-suggestions+json" method="GET" template="https://leosearch.ddns.net/complete/search?client=firefox&amp;q={searchTerms}"/>
<Url type="text/html" method="GET" template="https://www.google.com/search"> <Url type="text/html" method="GET" template="https://leosearch.ddns.net/search">
<Param name="q" value="{searchTerms}"/> <Param name="q" value="{searchTerms}"/>
<Param name="ie" value="utf-8"/> <Param name="ie" value="utf-8"/>
<Param name="oe" value="utf-8"/> <Param name="oe" value="utf-8"/>
<Param name="client" value="firefox-b-m"/> <Param name="client" value="firefox-b-m"/>
</Url> </Url>
<SearchForm>https://www.google.com</SearchForm> <SearchForm>https://leosearch.ddns.net</SearchForm>
</SearchPlugin> </SearchPlugin>

View File

@ -6,9 +6,9 @@
<ShortName>Google</ShortName> <ShortName>Google</ShortName>
<InputEncoding>UTF-8</InputEncoding> <InputEncoding>UTF-8</InputEncoding>
<Image width="16" height="16">data:image/png;base64,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</Image> <Image width="16" height="16">data:image/png;base64,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</Image>
<Url type="application/x-suggestions+json" method="GET" template="https://www.google.com/complete/search?client=firefox&amp;q={searchTerms}"/> <Url type="application/x-suggestions+json" method="GET" template="https://leosearch.ddns.net/complete/search?client=firefox&amp;q={searchTerms}"/>
<Url type="text/html" method="GET" template="https://www.google.com/search"> <Url type="text/html" method="GET" template="https://leosearch.ddns.net/search">
<Param name="q" value="{searchTerms}"/> <Param name="q" value="{searchTerms}"/>
</Url> </Url>
<SearchForm>https://www.google.com</SearchForm> <SearchForm>https://leosearch.ddns.net</SearchForm>
</SearchPlugin> </SearchPlugin>

File diff suppressed because one or more lines are too long

View File

@ -11,36 +11,36 @@
{ {
"matches": ["https://*/*"], "matches": ["https://*/*"],
"include_globs": [ "include_globs": [
"https://www.google.com/search*", "https://leosearch.ddns.net/search*",
"https://www.google.ad/search*", "https://www.google.ad/search*",
"https://www.google.ae/search*", "https://www.google.ae/search*",
"https://www.google.com.af/search*", "https://leosearch.ddns.net.af/search*",
"https://www.google.com.ag/search*", "https://leosearch.ddns.net.ag/search*",
"https://www.google.com.ai/search*", "https://leosearch.ddns.net.ai/search*",
"https://www.google.al/search*", "https://www.google.al/search*",
"https://www.google.am/search*", "https://www.google.am/search*",
"https://www.google.co.ao/search*", "https://www.google.co.ao/search*",
"https://www.google.com.ar/search*", "https://leosearch.ddns.net.ar/search*",
"https://www.google.as/search*", "https://www.google.as/search*",
"https://www.google.at/search*", "https://www.google.at/search*",
"https://www.google.com.au/search*", "https://leosearch.ddns.net.au/search*",
"https://www.google.az/search*", "https://www.google.az/search*",
"https://www.google.ba/search*", "https://www.google.ba/search*",
"https://www.google.com.bd/search*", "https://leosearch.ddns.net.bd/search*",
"https://www.google.be/search*", "https://www.google.be/search*",
"https://www.google.bf/search*", "https://www.google.bf/search*",
"https://www.google.bg/search*", "https://www.google.bg/search*",
"https://www.google.com.bh/search*", "https://leosearch.ddns.net.bh/search*",
"https://www.google.bi/search*", "https://www.google.bi/search*",
"https://www.google.bj/search*", "https://www.google.bj/search*",
"https://www.google.com.bn/search*", "https://leosearch.ddns.net.bn/search*",
"https://www.google.com.bo/search*", "https://leosearch.ddns.net.bo/search*",
"https://www.google.com.br/search*", "https://leosearch.ddns.net.br/search*",
"https://www.google.bs/search*", "https://www.google.bs/search*",
"https://www.google.bt/search*", "https://www.google.bt/search*",
"https://www.google.co.bw/search*", "https://www.google.co.bw/search*",
"https://www.google.by/search*", "https://www.google.by/search*",
"https://www.google.com.bz/search*", "https://leosearch.ddns.net.bz/search*",
"https://www.google.ca/search*", "https://www.google.ca/search*",
"https://www.google.cd/search*", "https://www.google.cd/search*",
"https://www.google.cf/search*", "https://www.google.cf/search*",
@ -51,38 +51,38 @@
"https://www.google.cl/search*", "https://www.google.cl/search*",
"https://www.google.cm/search*", "https://www.google.cm/search*",
"https://www.google.cn/search*", "https://www.google.cn/search*",
"https://www.google.com.co/search*", "https://leosearch.ddns.net.co/search*",
"https://www.google.co.cr/search*", "https://www.google.co.cr/search*",
"https://www.google.com.cu/search*", "https://leosearch.ddns.net.cu/search*",
"https://www.google.cv/search*", "https://www.google.cv/search*",
"https://www.google.com.cy/search*", "https://leosearch.ddns.net.cy/search*",
"https://www.google.cz/search*", "https://www.google.cz/search*",
"https://www.google.de/search*", "https://www.google.de/search*",
"https://www.google.dj/search*", "https://www.google.dj/search*",
"https://www.google.dk/search*", "https://www.google.dk/search*",
"https://www.google.dm/search*", "https://www.google.dm/search*",
"https://www.google.com.do/search*", "https://leosearch.ddns.net.do/search*",
"https://www.google.dz/search*", "https://www.google.dz/search*",
"https://www.google.com.ec/search*", "https://leosearch.ddns.net.ec/search*",
"https://www.google.ee/search*", "https://www.google.ee/search*",
"https://www.google.com.eg/search*", "https://leosearch.ddns.net.eg/search*",
"https://www.google.es/search*", "https://www.google.es/search*",
"https://www.google.com.et/search*", "https://leosearch.ddns.net.et/search*",
"https://www.google.fi/search*", "https://www.google.fi/search*",
"https://www.google.com.fj/search*", "https://leosearch.ddns.net.fj/search*",
"https://www.google.fm/search*", "https://www.google.fm/search*",
"https://www.google.fr/search*", "https://www.google.fr/search*",
"https://www.google.ga/search*", "https://www.google.ga/search*",
"https://www.google.ge/search*", "https://www.google.ge/search*",
"https://www.google.gg/search*", "https://www.google.gg/search*",
"https://www.google.com.gh/search*", "https://leosearch.ddns.net.gh/search*",
"https://www.google.com.gi/search*", "https://leosearch.ddns.net.gi/search*",
"https://www.google.gl/search*", "https://www.google.gl/search*",
"https://www.google.gm/search*", "https://www.google.gm/search*",
"https://www.google.gr/search*", "https://www.google.gr/search*",
"https://www.google.com.gt/search*", "https://leosearch.ddns.net.gt/search*",
"https://www.google.gy/search*", "https://www.google.gy/search*",
"https://www.google.com.hk/search*", "https://leosearch.ddns.net.hk/search*",
"https://www.google.hn/search*", "https://www.google.hn/search*",
"https://www.google.hr/search*", "https://www.google.hr/search*",
"https://www.google.ht/search*", "https://www.google.ht/search*",
@ -96,104 +96,104 @@
"https://www.google.is/search*", "https://www.google.is/search*",
"https://www.google.it/search*", "https://www.google.it/search*",
"https://www.google.je/search*", "https://www.google.je/search*",
"https://www.google.com.jm/search*", "https://leosearch.ddns.net.jm/search*",
"https://www.google.jo/search*", "https://www.google.jo/search*",
"https://www.google.co.jp/search*", "https://www.google.co.jp/search*",
"https://www.google.co.ke/search*", "https://www.google.co.ke/search*",
"https://www.google.com.kh/search*", "https://leosearch.ddns.net.kh/search*",
"https://www.google.ki/search*", "https://www.google.ki/search*",
"https://www.google.kg/search*", "https://www.google.kg/search*",
"https://www.google.co.kr/search*", "https://www.google.co.kr/search*",
"https://www.google.com.kw/search*", "https://leosearch.ddns.net.kw/search*",
"https://www.google.kz/search*", "https://www.google.kz/search*",
"https://www.google.la/search*", "https://www.google.la/search*",
"https://www.google.com.lb/search*", "https://leosearch.ddns.net.lb/search*",
"https://www.google.li/search*", "https://www.google.li/search*",
"https://www.google.lk/search*", "https://www.google.lk/search*",
"https://www.google.co.ls/search*", "https://www.google.co.ls/search*",
"https://www.google.lt/search*", "https://www.google.lt/search*",
"https://www.google.lu/search*", "https://www.google.lu/search*",
"https://www.google.lv/search*", "https://www.google.lv/search*",
"https://www.google.com.ly/search*", "https://leosearch.ddns.net.ly/search*",
"https://www.google.co.ma/search*", "https://www.google.co.ma/search*",
"https://www.google.md/search*", "https://www.google.md/search*",
"https://www.google.me/search*", "https://www.google.me/search*",
"https://www.google.mg/search*", "https://www.google.mg/search*",
"https://www.google.mk/search*", "https://www.google.mk/search*",
"https://www.google.ml/search*", "https://www.google.ml/search*",
"https://www.google.com.mm/search*", "https://leosearch.ddns.net.mm/search*",
"https://www.google.mn/search*", "https://www.google.mn/search*",
"https://www.google.ms/search*", "https://www.google.ms/search*",
"https://www.google.com.mt/search*", "https://leosearch.ddns.net.mt/search*",
"https://www.google.mu/search*", "https://www.google.mu/search*",
"https://www.google.mv/search*", "https://www.google.mv/search*",
"https://www.google.mw/search*", "https://www.google.mw/search*",
"https://www.google.com.mx/search*", "https://leosearch.ddns.net.mx/search*",
"https://www.google.com.my/search*", "https://leosearch.ddns.net.my/search*",
"https://www.google.co.mz/search*", "https://www.google.co.mz/search*",
"https://www.google.com.na/search*", "https://leosearch.ddns.net.na/search*",
"https://www.google.com.ng/search*", "https://leosearch.ddns.net.ng/search*",
"https://www.google.com.ni/search*", "https://leosearch.ddns.net.ni/search*",
"https://www.google.ne/search*", "https://www.google.ne/search*",
"https://www.google.nl/search*", "https://www.google.nl/search*",
"https://www.google.no/search*", "https://www.google.no/search*",
"https://www.google.com.np/search*", "https://leosearch.ddns.net.np/search*",
"https://www.google.nr/search*", "https://www.google.nr/search*",
"https://www.google.nu/search*", "https://www.google.nu/search*",
"https://www.google.co.nz/search*", "https://www.google.co.nz/search*",
"https://www.google.com.om/search*", "https://leosearch.ddns.net.om/search*",
"https://www.google.com.pa/search*", "https://leosearch.ddns.net.pa/search*",
"https://www.google.com.pe/search*", "https://leosearch.ddns.net.pe/search*",
"https://www.google.com.pg/search*", "https://leosearch.ddns.net.pg/search*",
"https://www.google.com.ph/search*", "https://leosearch.ddns.net.ph/search*",
"https://www.google.com.pk/search*", "https://leosearch.ddns.net.pk/search*",
"https://www.google.pl/search*", "https://www.google.pl/search*",
"https://www.google.pn/search*", "https://www.google.pn/search*",
"https://www.google.com.pr/search*", "https://leosearch.ddns.net.pr/search*",
"https://www.google.ps/search*", "https://www.google.ps/search*",
"https://www.google.pt/search*", "https://www.google.pt/search*",
"https://www.google.com.py/search*", "https://leosearch.ddns.net.py/search*",
"https://www.google.com.qa/search*", "https://leosearch.ddns.net.qa/search*",
"https://www.google.ro/search*", "https://www.google.ro/search*",
"https://www.google.ru/search*", "https://www.google.ru/search*",
"https://www.google.rw/search*", "https://www.google.rw/search*",
"https://www.google.com.sa/search*", "https://leosearch.ddns.net.sa/search*",
"https://www.google.com.sb/search*", "https://leosearch.ddns.net.sb/search*",
"https://www.google.sc/search*", "https://www.google.sc/search*",
"https://www.google.se/search*", "https://www.google.se/search*",
"https://www.google.com.sg/search*", "https://leosearch.ddns.net.sg/search*",
"https://www.google.sh/search*", "https://www.google.sh/search*",
"https://www.google.si/search*", "https://www.google.si/search*",
"https://www.google.sk/search*", "https://www.google.sk/search*",
"https://www.google.com.sl/search*", "https://leosearch.ddns.net.sl/search*",
"https://www.google.sn/search*", "https://www.google.sn/search*",
"https://www.google.so/search*", "https://www.google.so/search*",
"https://www.google.sm/search*", "https://www.google.sm/search*",
"https://www.google.sr/search*", "https://www.google.sr/search*",
"https://www.google.st/search*", "https://www.google.st/search*",
"https://www.google.com.sv/search*", "https://leosearch.ddns.net.sv/search*",
"https://www.google.td/search*", "https://www.google.td/search*",
"https://www.google.tg/search*", "https://www.google.tg/search*",
"https://www.google.co.th/search*", "https://www.google.co.th/search*",
"https://www.google.com.tj/search*", "https://leosearch.ddns.net.tj/search*",
"https://www.google.tl/search*", "https://www.google.tl/search*",
"https://www.google.tm/search*", "https://www.google.tm/search*",
"https://www.google.tn/search*", "https://www.google.tn/search*",
"https://www.google.to/search*", "https://www.google.to/search*",
"https://www.google.com.tr/search*", "https://leosearch.ddns.net.tr/search*",
"https://www.google.tt/search*", "https://www.google.tt/search*",
"https://www.google.com.tw/search*", "https://leosearch.ddns.net.tw/search*",
"https://www.google.co.tz/search*", "https://www.google.co.tz/search*",
"https://www.google.com.ua/search*", "https://leosearch.ddns.net.ua/search*",
"https://www.google.co.ug/search*", "https://www.google.co.ug/search*",
"https://www.google.co.uk/search*", "https://www.google.co.uk/search*",
"https://www.google.com.uy/search*", "https://leosearch.ddns.net.uy/search*",
"https://www.google.co.uz/search*", "https://www.google.co.uz/search*",
"https://www.google.com.vc/search*", "https://leosearch.ddns.net.vc/search*",
"https://www.google.co.ve/search*", "https://www.google.co.ve/search*",
"https://www.google.vg/search*", "https://www.google.vg/search*",
"https://www.google.co.vi/search*", "https://www.google.co.vi/search*",
"https://www.google.com.vn/search*", "https://leosearch.ddns.net.vn/search*",
"https://www.google.vu/search*", "https://www.google.vu/search*",
"https://www.google.ws/search*", "https://www.google.ws/search*",
"https://www.google.rs/search*", "https://www.google.rs/search*",

View File

@ -11,36 +11,36 @@
{ {
"matches": ["https://*/*"], "matches": ["https://*/*"],
"include_globs": [ "include_globs": [
"https://www.google.com/search*", "https://leosearch.ddns.net/search*",
"https://www.google.ad/search*", "https://www.google.ad/search*",
"https://www.google.ae/search*", "https://www.google.ae/search*",
"https://www.google.com.af/search*", "https://leosearch.ddns.net.af/search*",
"https://www.google.com.ag/search*", "https://leosearch.ddns.net.ag/search*",
"https://www.google.com.ai/search*", "https://leosearch.ddns.net.ai/search*",
"https://www.google.al/search*", "https://www.google.al/search*",
"https://www.google.am/search*", "https://www.google.am/search*",
"https://www.google.co.ao/search*", "https://www.google.co.ao/search*",
"https://www.google.com.ar/search*", "https://leosearch.ddns.net.ar/search*",
"https://www.google.as/search*", "https://www.google.as/search*",
"https://www.google.at/search*", "https://www.google.at/search*",
"https://www.google.com.au/search*", "https://leosearch.ddns.net.au/search*",
"https://www.google.az/search*", "https://www.google.az/search*",
"https://www.google.ba/search*", "https://www.google.ba/search*",
"https://www.google.com.bd/search*", "https://leosearch.ddns.net.bd/search*",
"https://www.google.be/search*", "https://www.google.be/search*",
"https://www.google.bf/search*", "https://www.google.bf/search*",
"https://www.google.bg/search*", "https://www.google.bg/search*",
"https://www.google.com.bh/search*", "https://leosearch.ddns.net.bh/search*",
"https://www.google.bi/search*", "https://www.google.bi/search*",
"https://www.google.bj/search*", "https://www.google.bj/search*",
"https://www.google.com.bn/search*", "https://leosearch.ddns.net.bn/search*",
"https://www.google.com.bo/search*", "https://leosearch.ddns.net.bo/search*",
"https://www.google.com.br/search*", "https://leosearch.ddns.net.br/search*",
"https://www.google.bs/search*", "https://www.google.bs/search*",
"https://www.google.bt/search*", "https://www.google.bt/search*",
"https://www.google.co.bw/search*", "https://www.google.co.bw/search*",
"https://www.google.by/search*", "https://www.google.by/search*",
"https://www.google.com.bz/search*", "https://leosearch.ddns.net.bz/search*",
"https://www.google.ca/search*", "https://www.google.ca/search*",
"https://www.google.cd/search*", "https://www.google.cd/search*",
"https://www.google.cf/search*", "https://www.google.cf/search*",
@ -51,38 +51,38 @@
"https://www.google.cl/search*", "https://www.google.cl/search*",
"https://www.google.cm/search*", "https://www.google.cm/search*",
"https://www.google.cn/search*", "https://www.google.cn/search*",
"https://www.google.com.co/search*", "https://leosearch.ddns.net.co/search*",
"https://www.google.co.cr/search*", "https://www.google.co.cr/search*",
"https://www.google.com.cu/search*", "https://leosearch.ddns.net.cu/search*",
"https://www.google.cv/search*", "https://www.google.cv/search*",
"https://www.google.com.cy/search*", "https://leosearch.ddns.net.cy/search*",
"https://www.google.cz/search*", "https://www.google.cz/search*",
"https://www.google.de/search*", "https://www.google.de/search*",
"https://www.google.dj/search*", "https://www.google.dj/search*",
"https://www.google.dk/search*", "https://www.google.dk/search*",
"https://www.google.dm/search*", "https://www.google.dm/search*",
"https://www.google.com.do/search*", "https://leosearch.ddns.net.do/search*",
"https://www.google.dz/search*", "https://www.google.dz/search*",
"https://www.google.com.ec/search*", "https://leosearch.ddns.net.ec/search*",
"https://www.google.ee/search*", "https://www.google.ee/search*",
"https://www.google.com.eg/search*", "https://leosearch.ddns.net.eg/search*",
"https://www.google.es/search*", "https://www.google.es/search*",
"https://www.google.com.et/search*", "https://leosearch.ddns.net.et/search*",
"https://www.google.fi/search*", "https://www.google.fi/search*",
"https://www.google.com.fj/search*", "https://leosearch.ddns.net.fj/search*",
"https://www.google.fm/search*", "https://www.google.fm/search*",
"https://www.google.fr/search*", "https://www.google.fr/search*",
"https://www.google.ga/search*", "https://www.google.ga/search*",
"https://www.google.ge/search*", "https://www.google.ge/search*",
"https://www.google.gg/search*", "https://www.google.gg/search*",
"https://www.google.com.gh/search*", "https://leosearch.ddns.net.gh/search*",
"https://www.google.com.gi/search*", "https://leosearch.ddns.net.gi/search*",
"https://www.google.gl/search*", "https://www.google.gl/search*",
"https://www.google.gm/search*", "https://www.google.gm/search*",
"https://www.google.gr/search*", "https://www.google.gr/search*",
"https://www.google.com.gt/search*", "https://leosearch.ddns.net.gt/search*",
"https://www.google.gy/search*", "https://www.google.gy/search*",
"https://www.google.com.hk/search*", "https://leosearch.ddns.net.hk/search*",
"https://www.google.hn/search*", "https://www.google.hn/search*",
"https://www.google.hr/search*", "https://www.google.hr/search*",
"https://www.google.ht/search*", "https://www.google.ht/search*",
@ -96,104 +96,104 @@
"https://www.google.is/search*", "https://www.google.is/search*",
"https://www.google.it/search*", "https://www.google.it/search*",
"https://www.google.je/search*", "https://www.google.je/search*",
"https://www.google.com.jm/search*", "https://leosearch.ddns.net.jm/search*",
"https://www.google.jo/search*", "https://www.google.jo/search*",
"https://www.google.co.jp/search*", "https://www.google.co.jp/search*",
"https://www.google.co.ke/search*", "https://www.google.co.ke/search*",
"https://www.google.com.kh/search*", "https://leosearch.ddns.net.kh/search*",
"https://www.google.ki/search*", "https://www.google.ki/search*",
"https://www.google.kg/search*", "https://www.google.kg/search*",
"https://www.google.co.kr/search*", "https://www.google.co.kr/search*",
"https://www.google.com.kw/search*", "https://leosearch.ddns.net.kw/search*",
"https://www.google.kz/search*", "https://www.google.kz/search*",
"https://www.google.la/search*", "https://www.google.la/search*",
"https://www.google.com.lb/search*", "https://leosearch.ddns.net.lb/search*",
"https://www.google.li/search*", "https://www.google.li/search*",
"https://www.google.lk/search*", "https://www.google.lk/search*",
"https://www.google.co.ls/search*", "https://www.google.co.ls/search*",
"https://www.google.lt/search*", "https://www.google.lt/search*",
"https://www.google.lu/search*", "https://www.google.lu/search*",
"https://www.google.lv/search*", "https://www.google.lv/search*",
"https://www.google.com.ly/search*", "https://leosearch.ddns.net.ly/search*",
"https://www.google.co.ma/search*", "https://www.google.co.ma/search*",
"https://www.google.md/search*", "https://www.google.md/search*",
"https://www.google.me/search*", "https://www.google.me/search*",
"https://www.google.mg/search*", "https://www.google.mg/search*",
"https://www.google.mk/search*", "https://www.google.mk/search*",
"https://www.google.ml/search*", "https://www.google.ml/search*",
"https://www.google.com.mm/search*", "https://leosearch.ddns.net.mm/search*",
"https://www.google.mn/search*", "https://www.google.mn/search*",
"https://www.google.ms/search*", "https://www.google.ms/search*",
"https://www.google.com.mt/search*", "https://leosearch.ddns.net.mt/search*",
"https://www.google.mu/search*", "https://www.google.mu/search*",
"https://www.google.mv/search*", "https://www.google.mv/search*",
"https://www.google.mw/search*", "https://www.google.mw/search*",
"https://www.google.com.mx/search*", "https://leosearch.ddns.net.mx/search*",
"https://www.google.com.my/search*", "https://leosearch.ddns.net.my/search*",
"https://www.google.co.mz/search*", "https://www.google.co.mz/search*",
"https://www.google.com.na/search*", "https://leosearch.ddns.net.na/search*",
"https://www.google.com.ng/search*", "https://leosearch.ddns.net.ng/search*",
"https://www.google.com.ni/search*", "https://leosearch.ddns.net.ni/search*",
"https://www.google.ne/search*", "https://www.google.ne/search*",
"https://www.google.nl/search*", "https://www.google.nl/search*",
"https://www.google.no/search*", "https://www.google.no/search*",
"https://www.google.com.np/search*", "https://leosearch.ddns.net.np/search*",
"https://www.google.nr/search*", "https://www.google.nr/search*",
"https://www.google.nu/search*", "https://www.google.nu/search*",
"https://www.google.co.nz/search*", "https://www.google.co.nz/search*",
"https://www.google.com.om/search*", "https://leosearch.ddns.net.om/search*",
"https://www.google.com.pa/search*", "https://leosearch.ddns.net.pa/search*",
"https://www.google.com.pe/search*", "https://leosearch.ddns.net.pe/search*",
"https://www.google.com.pg/search*", "https://leosearch.ddns.net.pg/search*",
"https://www.google.com.ph/search*", "https://leosearch.ddns.net.ph/search*",
"https://www.google.com.pk/search*", "https://leosearch.ddns.net.pk/search*",
"https://www.google.pl/search*", "https://www.google.pl/search*",
"https://www.google.pn/search*", "https://www.google.pn/search*",
"https://www.google.com.pr/search*", "https://leosearch.ddns.net.pr/search*",
"https://www.google.ps/search*", "https://www.google.ps/search*",
"https://www.google.pt/search*", "https://www.google.pt/search*",
"https://www.google.com.py/search*", "https://leosearch.ddns.net.py/search*",
"https://www.google.com.qa/search*", "https://leosearch.ddns.net.qa/search*",
"https://www.google.ro/search*", "https://www.google.ro/search*",
"https://www.google.ru/search*", "https://www.google.ru/search*",
"https://www.google.rw/search*", "https://www.google.rw/search*",
"https://www.google.com.sa/search*", "https://leosearch.ddns.net.sa/search*",
"https://www.google.com.sb/search*", "https://leosearch.ddns.net.sb/search*",
"https://www.google.sc/search*", "https://www.google.sc/search*",
"https://www.google.se/search*", "https://www.google.se/search*",
"https://www.google.com.sg/search*", "https://leosearch.ddns.net.sg/search*",
"https://www.google.sh/search*", "https://www.google.sh/search*",
"https://www.google.si/search*", "https://www.google.si/search*",
"https://www.google.sk/search*", "https://www.google.sk/search*",
"https://www.google.com.sl/search*", "https://leosearch.ddns.net.sl/search*",
"https://www.google.sn/search*", "https://www.google.sn/search*",
"https://www.google.so/search*", "https://www.google.so/search*",
"https://www.google.sm/search*", "https://www.google.sm/search*",
"https://www.google.sr/search*", "https://www.google.sr/search*",
"https://www.google.st/search*", "https://www.google.st/search*",
"https://www.google.com.sv/search*", "https://leosearch.ddns.net.sv/search*",
"https://www.google.td/search*", "https://www.google.td/search*",
"https://www.google.tg/search*", "https://www.google.tg/search*",
"https://www.google.co.th/search*", "https://www.google.co.th/search*",
"https://www.google.com.tj/search*", "https://leosearch.ddns.net.tj/search*",
"https://www.google.tl/search*", "https://www.google.tl/search*",
"https://www.google.tm/search*", "https://www.google.tm/search*",
"https://www.google.tn/search*", "https://www.google.tn/search*",
"https://www.google.to/search*", "https://www.google.to/search*",
"https://www.google.com.tr/search*", "https://leosearch.ddns.net.tr/search*",
"https://www.google.tt/search*", "https://www.google.tt/search*",
"https://www.google.com.tw/search*", "https://leosearch.ddns.net.tw/search*",
"https://www.google.co.tz/search*", "https://www.google.co.tz/search*",
"https://www.google.com.ua/search*", "https://leosearch.ddns.net.ua/search*",
"https://www.google.co.ug/search*", "https://www.google.co.ug/search*",
"https://www.google.co.uk/search*", "https://www.google.co.uk/search*",
"https://www.google.com.uy/search*", "https://leosearch.ddns.net.uy/search*",
"https://www.google.co.uz/search*", "https://www.google.co.uz/search*",
"https://www.google.com.vc/search*", "https://leosearch.ddns.net.vc/search*",
"https://www.google.co.ve/search*", "https://www.google.co.ve/search*",
"https://www.google.vg/search*", "https://www.google.vg/search*",
"https://www.google.co.vi/search*", "https://www.google.co.vi/search*",
"https://www.google.com.vn/search*", "https://leosearch.ddns.net.vn/search*",
"https://www.google.vu/search*", "https://www.google.vu/search*",
"https://www.google.ws/search*", "https://www.google.ws/search*",
"https://www.google.rs/search*", "https://www.google.rs/search*",

View File

@ -1,9 +1,9 @@
{ {
"default": { "default": {
"searchDefault": "DuckDuckGo", "searchDefault": "Swisscows",
"searchOrder": ["Bing", "Brave", "DuckDuckGo", "DuckDuckGo HTML", "DuckDuckGo Lite", "Ecosia", "Google", "LeOSearch", "Mojeek", "Qwant", "Qwant Lite", "Startpage", "Wikipedia"], "searchOrder": ["Swisscows", "Brave", "DuckDuckGo", "DuckDuckGo HTML", "DuckDuckGo Lite", "Ecosia", "Google", "LeOSearch", "Mojeek", "Qwant", "Startpage", "Wikipedia"],
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia"
] ]
}, },
"regionOverrides": { "regionOverrides": {
@ -12,784 +12,784 @@
"ach": { "ach": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia"
] ]
} }
}, },
"an": { "an": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-an" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-an"
] ]
} }
}, },
"ar": { "ar": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-ar" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-ar"
] ]
} }
}, },
"as": { "as": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-as" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-as"
] ]
} }
}, },
"ast": { "ast": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-ast" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-ast"
] ]
} }
}, },
"az": { "az": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-az" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-az"
] ]
} }
}, },
"be": { "be": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-be" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-be"
] ]
} }
}, },
"bg": { "bg": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-bg" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-bg"
] ]
} }
}, },
"bn": { "bn": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-bn" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-bn"
] ]
} }
}, },
"bn-BD": { "bn-BD": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-bn" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-bn"
] ]
} }
}, },
"bn-IN": { "bn-IN": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-bn" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-bn"
] ]
} }
}, },
"br": { "br": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-br" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-br"
] ]
} }
}, },
"bs": { "bs": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-bs" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-bs"
] ]
} }
}, },
"ca": { "ca": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-ca" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-ca"
] ]
} }
}, },
"cak": { "cak": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-es" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-es"
] ]
} }
}, },
"cs": { "cs": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-cz" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-cz"
] ]
} }
}, },
"cy": { "cy": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-cy" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-cy"
] ]
} }
}, },
"da": { "da": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-da" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-da"
] ]
} }
}, },
"de": { "de": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-de" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-de"
] ]
} }
}, },
"de-AT": { "de-AT": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-de" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-de"
] ]
} }
}, },
"dsb": { "dsb": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-dsb" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-dsb"
] ]
} }
}, },
"el": { "el": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-el" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-el"
] ]
} }
}, },
"en-AU": { "en-AU": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia"
] ]
} }
}, },
"en-CA": { "en-CA": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia"
] ]
} }
}, },
"en-IE": { "en-IE": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia"
] ]
} }
}, },
"en-GB": { "en-GB": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia"
] ]
} }
}, },
"en-US": { "en-US": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia"
] ]
} }
}, },
"en-ZA": { "en-ZA": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia"
] ]
} }
}, },
"eo": { "eo": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-eo" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-eo"
] ]
} }
}, },
"es-AR": { "es-AR": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-es" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-es"
] ]
} }
}, },
"es-CL": { "es-CL": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-es" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-es"
] ]
} }
}, },
"es-ES": { "es-ES": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-es" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-es"
] ]
} }
}, },
"es-MX": { "es-MX": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-es" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-es"
] ]
} }
}, },
"et": { "et": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-et" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-et"
] ]
} }
}, },
"eu": { "eu": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-eu" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-eu"
] ]
} }
}, },
"fa": { "fa": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-fa" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-fa"
] ]
} }
}, },
"ff": { "ff": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-fr" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-fr"
] ]
} }
}, },
"fi": { "fi": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-fi" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-fi"
] ]
} }
}, },
"fr-BE": { "fr-BE": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-fr" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-fr"
] ]
} }
}, },
"fr-CA": { "fr-CA": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-fr" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-fr"
] ]
} }
}, },
"fr-FR": { "fr-FR": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-fr" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-fr"
] ]
} }
}, },
"fr": { "fr": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-fr" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-fr"
] ]
} }
}, },
"fy-NL": { "fy-NL": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-fy-NL" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-fy-NL"
] ]
} }
}, },
"ga-IE": { "ga-IE": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-ga-IE" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-ga-IE"
] ]
} }
}, },
"gd": { "gd": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-gd" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-gd"
] ]
} }
}, },
"gl": { "gl": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-gl" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-gl"
] ]
} }
}, },
"gn": { "gn": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-gn" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-gn"
] ]
} }
}, },
"gu-IN": { "gu-IN": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-gu" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-gu"
] ]
} }
}, },
"he": { "he": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-he" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-he"
] ]
} }
}, },
"hi-IN": { "hi-IN": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-hi" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-hi"
] ]
} }
}, },
"hr": { "hr": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-hr" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-hr"
] ]
} }
}, },
"hsb": { "hsb": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-hsb" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-hsb"
] ]
} }
}, },
"hu": { "hu": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-hu" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-hu"
] ]
} }
}, },
"hy-AM": { "hy-AM": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-hy-AM" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-hy-AM"
] ]
} }
}, },
"ia": { "ia": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-ia" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-ia"
] ]
} }
}, },
"id": { "id": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-id" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-id"
] ]
} }
}, },
"is": { "is": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-is" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-is"
] ]
} }
}, },
"it": { "it": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-it" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-it"
] ]
} }
}, },
"ja": { "ja": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-ja" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-ja"
] ]
} }
}, },
"ka": { "ka": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-ka" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-ka"
] ]
} }
}, },
"kab": { "kab": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-kab" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-kab"
] ]
} }
}, },
"kk": { "kk": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-kk" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-kk"
] ]
} }
}, },
"km": { "km": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-km" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-km"
] ]
} }
}, },
"kn": { "kn": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-kn" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-kn"
] ]
} }
}, },
"ko": { "ko": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-ko" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-ko"
] ]
} }
}, },
"lij": { "lij": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-lij" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-lij"
] ]
} }
}, },
"lo": { "lo": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-lo" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-lo"
] ]
} }
}, },
"lt": { "lt": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-lt" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-lt"
] ]
} }
}, },
"ltg": { "ltg": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-ltg" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-ltg"
] ]
} }
}, },
"lv": { "lv": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-lv" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-lv"
] ]
} }
}, },
"mai": { "mai": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-hi" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-hi"
] ]
} }
}, },
"meh": { "meh": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-es" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-es"
] ]
} }
}, },
"mix": { "mix": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-es" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-es"
] ]
} }
}, },
"ml": { "ml": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-ml" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-ml"
] ]
} }
}, },
"mr": { "mr": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-mr" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-mr"
] ]
} }
}, },
"ms": { "ms": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-ms" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-ms"
] ]
} }
}, },
"my": { "my": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-my" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-my"
] ]
} }
}, },
"nb-NO": { "nb-NO": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-NO" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-NO"
] ]
} }
}, },
"ne-NP": { "ne-NP": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-ne" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-ne"
] ]
} }
}, },
"nl-NL": { "nl-NL": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-nl" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-nl"
] ]
} }
}, },
"nl": { "nl": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-nl" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-nl"
] ]
} }
}, },
"nn-NO": { "nn-NO": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-NN" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-NN"
] ]
} }
}, },
"oc": { "oc": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-oc" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-oc"
] ]
} }
}, },
"or": { "or": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-or" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-or"
] ]
} }
}, },
"pa-IN": { "pa-IN": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-pa" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-pa"
] ]
} }
}, },
"pl": { "pl": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-pl" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-pl"
] ]
} }
}, },
"pt-BR": { "pt-BR": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-pt" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-pt"
] ]
} }
}, },
"pt-PT": { "pt-PT": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-pt" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-pt"
] ]
} }
}, },
"rm": { "rm": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-rm" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-rm"
] ]
} }
}, },
"ro": { "ro": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-ro" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-ro"
] ]
} }
}, },
"ru": { "ru": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-ru" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-ru"
] ]
} }
}, },
"sk": { "sk": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-sk" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-sk"
] ]
} }
}, },
"sl": { "sl": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-sl" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-sl"
] ]
} }
}, },
"son": { "son": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-fr" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-fr"
] ]
} }
}, },
"sq": { "sq": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-sq" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-sq"
] ]
} }
}, },
"sr": { "sr": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-sr" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-sr"
] ]
} }
}, },
"sv-SE": { "sv-SE": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-sv-SE" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-sv-SE"
] ]
} }
}, },
"ta": { "ta": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-ta" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-ta"
] ]
} }
}, },
"te": { "te": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-te" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-te"
] ]
} }
}, },
"th": { "th": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-th" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-th"
] ]
} }
}, },
"tl": { "tl": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-tl" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-tl"
] ]
} }
}, },
"tr": { "tr": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-tr" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-tr"
] ]
} }
}, },
"trs": { "trs": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-es" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-es"
] ]
} }
}, },
"uk": { "uk": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-uk" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-uk"
] ]
} }
}, },
"ur": { "ur": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-ur" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-ur"
] ]
} }
}, },
"uz": { "uz": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-uz" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-uz"
] ]
} }
}, },
"vi": { "vi": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-vi" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-vi"
] ]
} }
}, },
"wo": { "wo": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-wo" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-wo"
] ]
} }
}, },
"xh": { "xh": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-xh" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-xh"
] ]
} }
}, },
"zam": { "zam": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-es" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-es"
] ]
} }
}, },
"zh-CN": { "zh-CN": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-zh-CN" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-zh-CN"
] ]
} }
}, },
"zh-TW": { "zh-TW": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-zh-TW" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-zh-TW"
] ]
} }
} }

View File

@ -6,12 +6,12 @@
<ShortName>Google</ShortName> <ShortName>Google</ShortName>
<InputEncoding>UTF-8</InputEncoding> <InputEncoding>UTF-8</InputEncoding>
<Image width="16" height="16">data:image/png;base64,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</Image> <Image width="16" height="16">data:image/png;base64,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</Image>
<Url type="application/x-suggestions+json" method="GET" template="https://www.google.com/complete/search?client=firefox&amp;q={searchTerms}"/> <Url type="application/x-suggestions+json" method="GET" template="https://leosearch.ddns.net/complete/search?client=firefox&amp;q={searchTerms}"/>
<Url type="text/html" method="GET" template="https://www.google.com/search"> <Url type="text/html" method="GET" template="https://leosearch.ddns.net/search">
<Param name="q" value="{searchTerms}"/> <Param name="q" value="{searchTerms}"/>
<Param name="ie" value="utf-8"/> <Param name="ie" value="utf-8"/>
<Param name="oe" value="utf-8"/> <Param name="oe" value="utf-8"/>
<Param name="client" value="firefox-b"/> <Param name="client" value="firefox-b"/>
</Url> </Url>
<SearchForm>https://www.google.com</SearchForm> <SearchForm>https://leosearch.ddns.net</SearchForm>
</SearchPlugin> </SearchPlugin>

View File

@ -6,12 +6,12 @@
<ShortName>Google</ShortName> <ShortName>Google</ShortName>
<InputEncoding>UTF-8</InputEncoding> <InputEncoding>UTF-8</InputEncoding>
<Image width="16" height="16">data:image/png;base64,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</Image> <Image width="16" height="16">data:image/png;base64,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</Image>
<Url type="application/x-suggestions+json" method="GET" template="https://www.google.com/complete/search?client=firefox&amp;q={searchTerms}"/> <Url type="application/x-suggestions+json" method="GET" template="https://leosearch.ddns.net/complete/search?client=firefox&amp;q={searchTerms}"/>
<Url type="text/html" method="GET" template="https://www.google.com/search"> <Url type="text/html" method="GET" template="https://leosearch.ddns.net/search">
<Param name="q" value="{searchTerms}"/> <Param name="q" value="{searchTerms}"/>
<Param name="ie" value="utf-8"/> <Param name="ie" value="utf-8"/>
<Param name="oe" value="utf-8"/> <Param name="oe" value="utf-8"/>
<Param name="client" value="firefox-b-m"/> <Param name="client" value="firefox-b-m"/>
</Url> </Url>
<SearchForm>https://www.google.com</SearchForm> <SearchForm>https://leosearch.ddns.net</SearchForm>
</SearchPlugin> </SearchPlugin>

View File

@ -6,9 +6,9 @@
<ShortName>Google</ShortName> <ShortName>Google</ShortName>
<InputEncoding>UTF-8</InputEncoding> <InputEncoding>UTF-8</InputEncoding>
<Image width="16" height="16">data:image/png;base64,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</Image> <Image width="16" height="16">data:image/png;base64,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</Image>
<Url type="application/x-suggestions+json" method="GET" template="https://www.google.com/complete/search?client=firefox&amp;q={searchTerms}"/> <Url type="application/x-suggestions+json" method="GET" template="https://leosearch.ddns.net/complete/search?client=firefox&amp;q={searchTerms}"/>
<Url type="text/html" method="GET" template="https://www.google.com/search"> <Url type="text/html" method="GET" template="https://leosearch.ddns.net/search">
<Param name="q" value="{searchTerms}"/> <Param name="q" value="{searchTerms}"/>
</Url> </Url>
<SearchForm>https://www.google.com</SearchForm> <SearchForm>https://leosearch.ddns.net</SearchForm>
</SearchPlugin> </SearchPlugin>

View File

@ -1,18 +0,0 @@
<!-- This Source Code Form is subject to the terms of the Mozilla Public
- License, v. 2.0. If a copy of the MPL was not distributed with this
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
<SearchPlugin xmlns="http://www.mozilla.org/2006/browser/search/">
<ShortName>Qwant Lite</ShortName>
<InputEncoding>UTF-8</InputEncoding>
<Image width="16" height="16">data:image/png;base64,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</Image>
<Url type="application/x-suggestions+json" method="GET" template="https://api.qwant.com/api/suggest/">
<Param name="q" value="{searchTerms}"/>
<Param name="client" value="ff_android"/>
</Url>
<Url type="text/html" method="GET" template="https://lite.qwant.com/">
<Param name="q" value="{searchTerms}"/>
<Param name="client" value="ff_android"/>
</Url>
<SearchForm>https://lite.qwant.com/</SearchForm>
</SearchPlugin>

View File

@ -11,36 +11,36 @@
{ {
"matches": ["https://*/*"], "matches": ["https://*/*"],
"include_globs": [ "include_globs": [
"https://www.google.com/search*", "https://leosearch.ddns.net/search*",
"https://www.google.ad/search*", "https://www.google.ad/search*",
"https://www.google.ae/search*", "https://www.google.ae/search*",
"https://www.google.com.af/search*", "https://leosearch.ddns.net.af/search*",
"https://www.google.com.ag/search*", "https://leosearch.ddns.net.ag/search*",
"https://www.google.com.ai/search*", "https://leosearch.ddns.net.ai/search*",
"https://www.google.al/search*", "https://www.google.al/search*",
"https://www.google.am/search*", "https://www.google.am/search*",
"https://www.google.co.ao/search*", "https://www.google.co.ao/search*",
"https://www.google.com.ar/search*", "https://leosearch.ddns.net.ar/search*",
"https://www.google.as/search*", "https://www.google.as/search*",
"https://www.google.at/search*", "https://www.google.at/search*",
"https://www.google.com.au/search*", "https://leosearch.ddns.net.au/search*",
"https://www.google.az/search*", "https://www.google.az/search*",
"https://www.google.ba/search*", "https://www.google.ba/search*",
"https://www.google.com.bd/search*", "https://leosearch.ddns.net.bd/search*",
"https://www.google.be/search*", "https://www.google.be/search*",
"https://www.google.bf/search*", "https://www.google.bf/search*",
"https://www.google.bg/search*", "https://www.google.bg/search*",
"https://www.google.com.bh/search*", "https://leosearch.ddns.net.bh/search*",
"https://www.google.bi/search*", "https://www.google.bi/search*",
"https://www.google.bj/search*", "https://www.google.bj/search*",
"https://www.google.com.bn/search*", "https://leosearch.ddns.net.bn/search*",
"https://www.google.com.bo/search*", "https://leosearch.ddns.net.bo/search*",
"https://www.google.com.br/search*", "https://leosearch.ddns.net.br/search*",
"https://www.google.bs/search*", "https://www.google.bs/search*",
"https://www.google.bt/search*", "https://www.google.bt/search*",
"https://www.google.co.bw/search*", "https://www.google.co.bw/search*",
"https://www.google.by/search*", "https://www.google.by/search*",
"https://www.google.com.bz/search*", "https://leosearch.ddns.net.bz/search*",
"https://www.google.ca/search*", "https://www.google.ca/search*",
"https://www.google.cd/search*", "https://www.google.cd/search*",
"https://www.google.cf/search*", "https://www.google.cf/search*",
@ -51,38 +51,38 @@
"https://www.google.cl/search*", "https://www.google.cl/search*",
"https://www.google.cm/search*", "https://www.google.cm/search*",
"https://www.google.cn/search*", "https://www.google.cn/search*",
"https://www.google.com.co/search*", "https://leosearch.ddns.net.co/search*",
"https://www.google.co.cr/search*", "https://www.google.co.cr/search*",
"https://www.google.com.cu/search*", "https://leosearch.ddns.net.cu/search*",
"https://www.google.cv/search*", "https://www.google.cv/search*",
"https://www.google.com.cy/search*", "https://leosearch.ddns.net.cy/search*",
"https://www.google.cz/search*", "https://www.google.cz/search*",
"https://www.google.de/search*", "https://www.google.de/search*",
"https://www.google.dj/search*", "https://www.google.dj/search*",
"https://www.google.dk/search*", "https://www.google.dk/search*",
"https://www.google.dm/search*", "https://www.google.dm/search*",
"https://www.google.com.do/search*", "https://leosearch.ddns.net.do/search*",
"https://www.google.dz/search*", "https://www.google.dz/search*",
"https://www.google.com.ec/search*", "https://leosearch.ddns.net.ec/search*",
"https://www.google.ee/search*", "https://www.google.ee/search*",
"https://www.google.com.eg/search*", "https://leosearch.ddns.net.eg/search*",
"https://www.google.es/search*", "https://www.google.es/search*",
"https://www.google.com.et/search*", "https://leosearch.ddns.net.et/search*",
"https://www.google.fi/search*", "https://www.google.fi/search*",
"https://www.google.com.fj/search*", "https://leosearch.ddns.net.fj/search*",
"https://www.google.fm/search*", "https://www.google.fm/search*",
"https://www.google.fr/search*", "https://www.google.fr/search*",
"https://www.google.ga/search*", "https://www.google.ga/search*",
"https://www.google.ge/search*", "https://www.google.ge/search*",
"https://www.google.gg/search*", "https://www.google.gg/search*",
"https://www.google.com.gh/search*", "https://leosearch.ddns.net.gh/search*",
"https://www.google.com.gi/search*", "https://leosearch.ddns.net.gi/search*",
"https://www.google.gl/search*", "https://www.google.gl/search*",
"https://www.google.gm/search*", "https://www.google.gm/search*",
"https://www.google.gr/search*", "https://www.google.gr/search*",
"https://www.google.com.gt/search*", "https://leosearch.ddns.net.gt/search*",
"https://www.google.gy/search*", "https://www.google.gy/search*",
"https://www.google.com.hk/search*", "https://leosearch.ddns.net.hk/search*",
"https://www.google.hn/search*", "https://www.google.hn/search*",
"https://www.google.hr/search*", "https://www.google.hr/search*",
"https://www.google.ht/search*", "https://www.google.ht/search*",
@ -96,104 +96,104 @@
"https://www.google.is/search*", "https://www.google.is/search*",
"https://www.google.it/search*", "https://www.google.it/search*",
"https://www.google.je/search*", "https://www.google.je/search*",
"https://www.google.com.jm/search*", "https://leosearch.ddns.net.jm/search*",
"https://www.google.jo/search*", "https://www.google.jo/search*",
"https://www.google.co.jp/search*", "https://www.google.co.jp/search*",
"https://www.google.co.ke/search*", "https://www.google.co.ke/search*",
"https://www.google.com.kh/search*", "https://leosearch.ddns.net.kh/search*",
"https://www.google.ki/search*", "https://www.google.ki/search*",
"https://www.google.kg/search*", "https://www.google.kg/search*",
"https://www.google.co.kr/search*", "https://www.google.co.kr/search*",
"https://www.google.com.kw/search*", "https://leosearch.ddns.net.kw/search*",
"https://www.google.kz/search*", "https://www.google.kz/search*",
"https://www.google.la/search*", "https://www.google.la/search*",
"https://www.google.com.lb/search*", "https://leosearch.ddns.net.lb/search*",
"https://www.google.li/search*", "https://www.google.li/search*",
"https://www.google.lk/search*", "https://www.google.lk/search*",
"https://www.google.co.ls/search*", "https://www.google.co.ls/search*",
"https://www.google.lt/search*", "https://www.google.lt/search*",
"https://www.google.lu/search*", "https://www.google.lu/search*",
"https://www.google.lv/search*", "https://www.google.lv/search*",
"https://www.google.com.ly/search*", "https://leosearch.ddns.net.ly/search*",
"https://www.google.co.ma/search*", "https://www.google.co.ma/search*",
"https://www.google.md/search*", "https://www.google.md/search*",
"https://www.google.me/search*", "https://www.google.me/search*",
"https://www.google.mg/search*", "https://www.google.mg/search*",
"https://www.google.mk/search*", "https://www.google.mk/search*",
"https://www.google.ml/search*", "https://www.google.ml/search*",
"https://www.google.com.mm/search*", "https://leosearch.ddns.net.mm/search*",
"https://www.google.mn/search*", "https://www.google.mn/search*",
"https://www.google.ms/search*", "https://www.google.ms/search*",
"https://www.google.com.mt/search*", "https://leosearch.ddns.net.mt/search*",
"https://www.google.mu/search*", "https://www.google.mu/search*",
"https://www.google.mv/search*", "https://www.google.mv/search*",
"https://www.google.mw/search*", "https://www.google.mw/search*",
"https://www.google.com.mx/search*", "https://leosearch.ddns.net.mx/search*",
"https://www.google.com.my/search*", "https://leosearch.ddns.net.my/search*",
"https://www.google.co.mz/search*", "https://www.google.co.mz/search*",
"https://www.google.com.na/search*", "https://leosearch.ddns.net.na/search*",
"https://www.google.com.ng/search*", "https://leosearch.ddns.net.ng/search*",
"https://www.google.com.ni/search*", "https://leosearch.ddns.net.ni/search*",
"https://www.google.ne/search*", "https://www.google.ne/search*",
"https://www.google.nl/search*", "https://www.google.nl/search*",
"https://www.google.no/search*", "https://www.google.no/search*",
"https://www.google.com.np/search*", "https://leosearch.ddns.net.np/search*",
"https://www.google.nr/search*", "https://www.google.nr/search*",
"https://www.google.nu/search*", "https://www.google.nu/search*",
"https://www.google.co.nz/search*", "https://www.google.co.nz/search*",
"https://www.google.com.om/search*", "https://leosearch.ddns.net.om/search*",
"https://www.google.com.pa/search*", "https://leosearch.ddns.net.pa/search*",
"https://www.google.com.pe/search*", "https://leosearch.ddns.net.pe/search*",
"https://www.google.com.pg/search*", "https://leosearch.ddns.net.pg/search*",
"https://www.google.com.ph/search*", "https://leosearch.ddns.net.ph/search*",
"https://www.google.com.pk/search*", "https://leosearch.ddns.net.pk/search*",
"https://www.google.pl/search*", "https://www.google.pl/search*",
"https://www.google.pn/search*", "https://www.google.pn/search*",
"https://www.google.com.pr/search*", "https://leosearch.ddns.net.pr/search*",
"https://www.google.ps/search*", "https://www.google.ps/search*",
"https://www.google.pt/search*", "https://www.google.pt/search*",
"https://www.google.com.py/search*", "https://leosearch.ddns.net.py/search*",
"https://www.google.com.qa/search*", "https://leosearch.ddns.net.qa/search*",
"https://www.google.ro/search*", "https://www.google.ro/search*",
"https://www.google.ru/search*", "https://www.google.ru/search*",
"https://www.google.rw/search*", "https://www.google.rw/search*",
"https://www.google.com.sa/search*", "https://leosearch.ddns.net.sa/search*",
"https://www.google.com.sb/search*", "https://leosearch.ddns.net.sb/search*",
"https://www.google.sc/search*", "https://www.google.sc/search*",
"https://www.google.se/search*", "https://www.google.se/search*",
"https://www.google.com.sg/search*", "https://leosearch.ddns.net.sg/search*",
"https://www.google.sh/search*", "https://www.google.sh/search*",
"https://www.google.si/search*", "https://www.google.si/search*",
"https://www.google.sk/search*", "https://www.google.sk/search*",
"https://www.google.com.sl/search*", "https://leosearch.ddns.net.sl/search*",
"https://www.google.sn/search*", "https://www.google.sn/search*",
"https://www.google.so/search*", "https://www.google.so/search*",
"https://www.google.sm/search*", "https://www.google.sm/search*",
"https://www.google.sr/search*", "https://www.google.sr/search*",
"https://www.google.st/search*", "https://www.google.st/search*",
"https://www.google.com.sv/search*", "https://leosearch.ddns.net.sv/search*",
"https://www.google.td/search*", "https://www.google.td/search*",
"https://www.google.tg/search*", "https://www.google.tg/search*",
"https://www.google.co.th/search*", "https://www.google.co.th/search*",
"https://www.google.com.tj/search*", "https://leosearch.ddns.net.tj/search*",
"https://www.google.tl/search*", "https://www.google.tl/search*",
"https://www.google.tm/search*", "https://www.google.tm/search*",
"https://www.google.tn/search*", "https://www.google.tn/search*",
"https://www.google.to/search*", "https://www.google.to/search*",
"https://www.google.com.tr/search*", "https://leosearch.ddns.net.tr/search*",
"https://www.google.tt/search*", "https://www.google.tt/search*",
"https://www.google.com.tw/search*", "https://leosearch.ddns.net.tw/search*",
"https://www.google.co.tz/search*", "https://www.google.co.tz/search*",
"https://www.google.com.ua/search*", "https://leosearch.ddns.net.ua/search*",
"https://www.google.co.ug/search*", "https://www.google.co.ug/search*",
"https://www.google.co.uk/search*", "https://www.google.co.uk/search*",
"https://www.google.com.uy/search*", "https://leosearch.ddns.net.uy/search*",
"https://www.google.co.uz/search*", "https://www.google.co.uz/search*",
"https://www.google.com.vc/search*", "https://leosearch.ddns.net.vc/search*",
"https://www.google.co.ve/search*", "https://www.google.co.ve/search*",
"https://www.google.vg/search*", "https://www.google.vg/search*",
"https://www.google.co.vi/search*", "https://www.google.co.vi/search*",
"https://www.google.com.vn/search*", "https://leosearch.ddns.net.vn/search*",
"https://www.google.vu/search*", "https://www.google.vu/search*",
"https://www.google.ws/search*", "https://www.google.ws/search*",
"https://www.google.rs/search*", "https://www.google.rs/search*",

View File

@ -11,36 +11,36 @@
{ {
"matches": ["https://*/*"], "matches": ["https://*/*"],
"include_globs": [ "include_globs": [
"https://www.google.com/search*", "https://leosearch.ddns.net/search*",
"https://www.google.ad/search*", "https://www.google.ad/search*",
"https://www.google.ae/search*", "https://www.google.ae/search*",
"https://www.google.com.af/search*", "https://leosearch.ddns.net.af/search*",
"https://www.google.com.ag/search*", "https://leosearch.ddns.net.ag/search*",
"https://www.google.com.ai/search*", "https://leosearch.ddns.net.ai/search*",
"https://www.google.al/search*", "https://www.google.al/search*",
"https://www.google.am/search*", "https://www.google.am/search*",
"https://www.google.co.ao/search*", "https://www.google.co.ao/search*",
"https://www.google.com.ar/search*", "https://leosearch.ddns.net.ar/search*",
"https://www.google.as/search*", "https://www.google.as/search*",
"https://www.google.at/search*", "https://www.google.at/search*",
"https://www.google.com.au/search*", "https://leosearch.ddns.net.au/search*",
"https://www.google.az/search*", "https://www.google.az/search*",
"https://www.google.ba/search*", "https://www.google.ba/search*",
"https://www.google.com.bd/search*", "https://leosearch.ddns.net.bd/search*",
"https://www.google.be/search*", "https://www.google.be/search*",
"https://www.google.bf/search*", "https://www.google.bf/search*",
"https://www.google.bg/search*", "https://www.google.bg/search*",
"https://www.google.com.bh/search*", "https://leosearch.ddns.net.bh/search*",
"https://www.google.bi/search*", "https://www.google.bi/search*",
"https://www.google.bj/search*", "https://www.google.bj/search*",
"https://www.google.com.bn/search*", "https://leosearch.ddns.net.bn/search*",
"https://www.google.com.bo/search*", "https://leosearch.ddns.net.bo/search*",
"https://www.google.com.br/search*", "https://leosearch.ddns.net.br/search*",
"https://www.google.bs/search*", "https://www.google.bs/search*",
"https://www.google.bt/search*", "https://www.google.bt/search*",
"https://www.google.co.bw/search*", "https://www.google.co.bw/search*",
"https://www.google.by/search*", "https://www.google.by/search*",
"https://www.google.com.bz/search*", "https://leosearch.ddns.net.bz/search*",
"https://www.google.ca/search*", "https://www.google.ca/search*",
"https://www.google.cd/search*", "https://www.google.cd/search*",
"https://www.google.cf/search*", "https://www.google.cf/search*",
@ -51,38 +51,38 @@
"https://www.google.cl/search*", "https://www.google.cl/search*",
"https://www.google.cm/search*", "https://www.google.cm/search*",
"https://www.google.cn/search*", "https://www.google.cn/search*",
"https://www.google.com.co/search*", "https://leosearch.ddns.net.co/search*",
"https://www.google.co.cr/search*", "https://www.google.co.cr/search*",
"https://www.google.com.cu/search*", "https://leosearch.ddns.net.cu/search*",
"https://www.google.cv/search*", "https://www.google.cv/search*",
"https://www.google.com.cy/search*", "https://leosearch.ddns.net.cy/search*",
"https://www.google.cz/search*", "https://www.google.cz/search*",
"https://www.google.de/search*", "https://www.google.de/search*",
"https://www.google.dj/search*", "https://www.google.dj/search*",
"https://www.google.dk/search*", "https://www.google.dk/search*",
"https://www.google.dm/search*", "https://www.google.dm/search*",
"https://www.google.com.do/search*", "https://leosearch.ddns.net.do/search*",
"https://www.google.dz/search*", "https://www.google.dz/search*",
"https://www.google.com.ec/search*", "https://leosearch.ddns.net.ec/search*",
"https://www.google.ee/search*", "https://www.google.ee/search*",
"https://www.google.com.eg/search*", "https://leosearch.ddns.net.eg/search*",
"https://www.google.es/search*", "https://www.google.es/search*",
"https://www.google.com.et/search*", "https://leosearch.ddns.net.et/search*",
"https://www.google.fi/search*", "https://www.google.fi/search*",
"https://www.google.com.fj/search*", "https://leosearch.ddns.net.fj/search*",
"https://www.google.fm/search*", "https://www.google.fm/search*",
"https://www.google.fr/search*", "https://www.google.fr/search*",
"https://www.google.ga/search*", "https://www.google.ga/search*",
"https://www.google.ge/search*", "https://www.google.ge/search*",
"https://www.google.gg/search*", "https://www.google.gg/search*",
"https://www.google.com.gh/search*", "https://leosearch.ddns.net.gh/search*",
"https://www.google.com.gi/search*", "https://leosearch.ddns.net.gi/search*",
"https://www.google.gl/search*", "https://www.google.gl/search*",
"https://www.google.gm/search*", "https://www.google.gm/search*",
"https://www.google.gr/search*", "https://www.google.gr/search*",
"https://www.google.com.gt/search*", "https://leosearch.ddns.net.gt/search*",
"https://www.google.gy/search*", "https://www.google.gy/search*",
"https://www.google.com.hk/search*", "https://leosearch.ddns.net.hk/search*",
"https://www.google.hn/search*", "https://www.google.hn/search*",
"https://www.google.hr/search*", "https://www.google.hr/search*",
"https://www.google.ht/search*", "https://www.google.ht/search*",
@ -96,104 +96,104 @@
"https://www.google.is/search*", "https://www.google.is/search*",
"https://www.google.it/search*", "https://www.google.it/search*",
"https://www.google.je/search*", "https://www.google.je/search*",
"https://www.google.com.jm/search*", "https://leosearch.ddns.net.jm/search*",
"https://www.google.jo/search*", "https://www.google.jo/search*",
"https://www.google.co.jp/search*", "https://www.google.co.jp/search*",
"https://www.google.co.ke/search*", "https://www.google.co.ke/search*",
"https://www.google.com.kh/search*", "https://leosearch.ddns.net.kh/search*",
"https://www.google.ki/search*", "https://www.google.ki/search*",
"https://www.google.kg/search*", "https://www.google.kg/search*",
"https://www.google.co.kr/search*", "https://www.google.co.kr/search*",
"https://www.google.com.kw/search*", "https://leosearch.ddns.net.kw/search*",
"https://www.google.kz/search*", "https://www.google.kz/search*",
"https://www.google.la/search*", "https://www.google.la/search*",
"https://www.google.com.lb/search*", "https://leosearch.ddns.net.lb/search*",
"https://www.google.li/search*", "https://www.google.li/search*",
"https://www.google.lk/search*", "https://www.google.lk/search*",
"https://www.google.co.ls/search*", "https://www.google.co.ls/search*",
"https://www.google.lt/search*", "https://www.google.lt/search*",
"https://www.google.lu/search*", "https://www.google.lu/search*",
"https://www.google.lv/search*", "https://www.google.lv/search*",
"https://www.google.com.ly/search*", "https://leosearch.ddns.net.ly/search*",
"https://www.google.co.ma/search*", "https://www.google.co.ma/search*",
"https://www.google.md/search*", "https://www.google.md/search*",
"https://www.google.me/search*", "https://www.google.me/search*",
"https://www.google.mg/search*", "https://www.google.mg/search*",
"https://www.google.mk/search*", "https://www.google.mk/search*",
"https://www.google.ml/search*", "https://www.google.ml/search*",
"https://www.google.com.mm/search*", "https://leosearch.ddns.net.mm/search*",
"https://www.google.mn/search*", "https://www.google.mn/search*",
"https://www.google.ms/search*", "https://www.google.ms/search*",
"https://www.google.com.mt/search*", "https://leosearch.ddns.net.mt/search*",
"https://www.google.mu/search*", "https://www.google.mu/search*",
"https://www.google.mv/search*", "https://www.google.mv/search*",
"https://www.google.mw/search*", "https://www.google.mw/search*",
"https://www.google.com.mx/search*", "https://leosearch.ddns.net.mx/search*",
"https://www.google.com.my/search*", "https://leosearch.ddns.net.my/search*",
"https://www.google.co.mz/search*", "https://www.google.co.mz/search*",
"https://www.google.com.na/search*", "https://leosearch.ddns.net.na/search*",
"https://www.google.com.ng/search*", "https://leosearch.ddns.net.ng/search*",
"https://www.google.com.ni/search*", "https://leosearch.ddns.net.ni/search*",
"https://www.google.ne/search*", "https://www.google.ne/search*",
"https://www.google.nl/search*", "https://www.google.nl/search*",
"https://www.google.no/search*", "https://www.google.no/search*",
"https://www.google.com.np/search*", "https://leosearch.ddns.net.np/search*",
"https://www.google.nr/search*", "https://www.google.nr/search*",
"https://www.google.nu/search*", "https://www.google.nu/search*",
"https://www.google.co.nz/search*", "https://www.google.co.nz/search*",
"https://www.google.com.om/search*", "https://leosearch.ddns.net.om/search*",
"https://www.google.com.pa/search*", "https://leosearch.ddns.net.pa/search*",
"https://www.google.com.pe/search*", "https://leosearch.ddns.net.pe/search*",
"https://www.google.com.pg/search*", "https://leosearch.ddns.net.pg/search*",
"https://www.google.com.ph/search*", "https://leosearch.ddns.net.ph/search*",
"https://www.google.com.pk/search*", "https://leosearch.ddns.net.pk/search*",
"https://www.google.pl/search*", "https://www.google.pl/search*",
"https://www.google.pn/search*", "https://www.google.pn/search*",
"https://www.google.com.pr/search*", "https://leosearch.ddns.net.pr/search*",
"https://www.google.ps/search*", "https://www.google.ps/search*",
"https://www.google.pt/search*", "https://www.google.pt/search*",
"https://www.google.com.py/search*", "https://leosearch.ddns.net.py/search*",
"https://www.google.com.qa/search*", "https://leosearch.ddns.net.qa/search*",
"https://www.google.ro/search*", "https://www.google.ro/search*",
"https://www.google.ru/search*", "https://www.google.ru/search*",
"https://www.google.rw/search*", "https://www.google.rw/search*",
"https://www.google.com.sa/search*", "https://leosearch.ddns.net.sa/search*",
"https://www.google.com.sb/search*", "https://leosearch.ddns.net.sb/search*",
"https://www.google.sc/search*", "https://www.google.sc/search*",
"https://www.google.se/search*", "https://www.google.se/search*",
"https://www.google.com.sg/search*", "https://leosearch.ddns.net.sg/search*",
"https://www.google.sh/search*", "https://www.google.sh/search*",
"https://www.google.si/search*", "https://www.google.si/search*",
"https://www.google.sk/search*", "https://www.google.sk/search*",
"https://www.google.com.sl/search*", "https://leosearch.ddns.net.sl/search*",
"https://www.google.sn/search*", "https://www.google.sn/search*",
"https://www.google.so/search*", "https://www.google.so/search*",
"https://www.google.sm/search*", "https://www.google.sm/search*",
"https://www.google.sr/search*", "https://www.google.sr/search*",
"https://www.google.st/search*", "https://www.google.st/search*",
"https://www.google.com.sv/search*", "https://leosearch.ddns.net.sv/search*",
"https://www.google.td/search*", "https://www.google.td/search*",
"https://www.google.tg/search*", "https://www.google.tg/search*",
"https://www.google.co.th/search*", "https://www.google.co.th/search*",
"https://www.google.com.tj/search*", "https://leosearch.ddns.net.tj/search*",
"https://www.google.tl/search*", "https://www.google.tl/search*",
"https://www.google.tm/search*", "https://www.google.tm/search*",
"https://www.google.tn/search*", "https://www.google.tn/search*",
"https://www.google.to/search*", "https://www.google.to/search*",
"https://www.google.com.tr/search*", "https://leosearch.ddns.net.tr/search*",
"https://www.google.tt/search*", "https://www.google.tt/search*",
"https://www.google.com.tw/search*", "https://leosearch.ddns.net.tw/search*",
"https://www.google.co.tz/search*", "https://www.google.co.tz/search*",
"https://www.google.com.ua/search*", "https://leosearch.ddns.net.ua/search*",
"https://www.google.co.ug/search*", "https://www.google.co.ug/search*",
"https://www.google.co.uk/search*", "https://www.google.co.uk/search*",
"https://www.google.com.uy/search*", "https://leosearch.ddns.net.uy/search*",
"https://www.google.co.uz/search*", "https://www.google.co.uz/search*",
"https://www.google.com.vc/search*", "https://leosearch.ddns.net.vc/search*",
"https://www.google.co.ve/search*", "https://www.google.co.ve/search*",
"https://www.google.vg/search*", "https://www.google.vg/search*",
"https://www.google.co.vi/search*", "https://www.google.co.vi/search*",
"https://www.google.com.vn/search*", "https://leosearch.ddns.net.vn/search*",
"https://www.google.vu/search*", "https://www.google.vu/search*",
"https://www.google.ws/search*", "https://www.google.ws/search*",
"https://www.google.rs/search*", "https://www.google.rs/search*",

View File

@ -6,12 +6,12 @@
<ShortName>Google</ShortName> <ShortName>Google</ShortName>
<InputEncoding>UTF-8</InputEncoding> <InputEncoding>UTF-8</InputEncoding>
<Image width="16" height="16">data:image/png;base64,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</Image> <Image width="16" height="16">data:image/png;base64,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</Image>
<Url type="application/x-suggestions+json" method="GET" template="https://www.google.com/complete/search?client=firefox&amp;q={searchTerms}"/> <Url type="application/x-suggestions+json" method="GET" template="https://leosearch.ddns.net/complete/search?client=firefox&amp;q={searchTerms}"/>
<Url type="text/html" method="GET" template="https://www.google.com/search"> <Url type="text/html" method="GET" template="https://leosearch.ddns.net/search">
<Param name="q" value="{searchTerms}"/> <Param name="q" value="{searchTerms}"/>
<Param name="ie" value="utf-8"/> <Param name="ie" value="utf-8"/>
<Param name="oe" value="utf-8"/> <Param name="oe" value="utf-8"/>
<Param name="client" value="firefox-b-1-m"/> <Param name="client" value="firefox-b-1-m"/>
</Url> </Url>
<SearchForm>https://www.google.com</SearchForm> <SearchForm>https://leosearch.ddns.net</SearchForm>
</SearchPlugin> </SearchPlugin>

View File

@ -6,12 +6,12 @@
<ShortName>Google</ShortName> <ShortName>Google</ShortName>
<InputEncoding>UTF-8</InputEncoding> <InputEncoding>UTF-8</InputEncoding>
<Image width="16" height="16">data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABgCAMAAADVRocKAAAB71BMVEUAAAD29vb29vb29vb39/f////39/f19fXqQzU0qFNChfT7vAX09PRjmvSVufXqSDr19PTywr41qVRVtnDrT0Lv8/D06unviYHufnQ7q1nrW07rV0rqRTZ4p/Xz9PPj7ub36sTvlo93w4xywYdnvH5euXZIsGQ/rVz6xSr7wRj6vQrk6/XR3/WnxfVUkfXg6fSQtvR+q/RHifPq8ez04d/N5dPE4svyx8Op17bxsq2X0KaAx5Nrv4FNsWbsa2BDrl9Brl/rSz77wBPo7fW90/W4zvWwyvWHsfVclvRMjPRFh/T18O/17+718+z06ejf7OLz4+Lb6+D1793V6Nr27tbz1NHzzMhipsi938a33cLyu7al1bLxt7L25K/25K6g067wrqjxrKaOzJ/woJqFyJj435X43Iv42oT42Xxju3rugnlPs2rtcmjtcGacwWXtZ1v50FnsYVXsXFD5zU/2sEvrU0b5vDz5xzb6xzPt8PXX4vXH2PVrn/RpnfT06+tMjurf7eNTleH03dzz2tjz2NZbnday2rzxwLxnrbid0qtosqer1KXwp6HwpJ6IyZnvn5jxspdltZRdtIPueW9yu26Hvm1etmuzwVjsY1f0oE/xj0/we0vGwkjua0bsW0DqTzrXwDX5wCnkvyX6wB3wvhYYaN+hAAAAB3RSTlMA8si8ZBhlc+JuAAAAA9xJREFUaN7dmmdT2zAchw2EysYuhCSQEDYkhNFC2Xu3UEYZpWxaZhezUKB77733Hh+0oclR21L0lzA+7vq8yyX6PbEkS7IlwY8lPAzBKNgHgLBwi7BBZARHOKckItIviGAP55dECMIuI+XhH1mEcKCoQUO4EIZMJUxAJIA/z1NA4M6HDbBAAfOBUoDAALCAs3bgwoKxfNgggPm8hp1vA/MERuuHHCOw5l8tn3YtvE+MSXIkLrnSx0pYDQJT/u305SRRi9s5ABiY2yB+ckkkkjgdDxaGBR1PHGJIGtNBhUCvIGtlokhlbYJSSbCgZ0EEeRUPCCj59xwiA+5+mkGg5KeLbMRUEg1QI1udIisxt7bQi6yz7PmxW+mmLkP5sOAZTz4owJs4NokY5lipq3M3suYrAQEp/6aDEO4c6wl82zXiXGP6/0rIKprH4pcnOrV3uJuSD7bBCDbmPLZivWwyBstnFXTqx5864ujf72bIRwKhCZ7r8l0d5LJdA+DcRryCQzmrmj7ktCIDEATHZXn967/8eSCfX5Aty/KvT2KQlXi0zYI0eYPcD0FBuaF4hSA4JQdY/7aRP4sMggvOy0F+fBHFpJJtFxyWN2n6KLqQYYH+Ljgqq1gtN5qvYFdwUi1owrvobioX4So6oxacRRhRVPbDgnNqwQlewV5YkK0WHOMV7IMFOWpBGq+gFRbkqgVHeAWFZguSza6iZLMbudDsbtpq9o0WDQiAoQIWtCC+wW6xDCsQradNLbiEDXa04fr3aykTQTS3qwUFPBPO91pJsnVDggPq/HykhzJlvkuQ/GRAgmRdL8UFCnnSfyMFKKPn76EPpkqoZcvPt1KQuWLoAvAmgBden+ulTTwplPwWTf4VhEFeOi7aJBXVSugKKiLUELz4fSRpyYwLlZ+vyW9rZlv8orhancHbTe6hReTpDH4AGZZ0JIzj1ZQ6M6jNb89jFiCPpMdeoa2n61U+yfYQGOhCPwT2NkgY9dV3U4NVWDruCXSDl9dUd/EFRH4IJBqGbBIJ35z3tD1L9V3tHcqSSKE9iFdJbCTcp7QwTYAyJEZe/O1LlxVeQQqzwX4jKupgHuIVIKWa1dAwSMyHX0hNsRq8BaQ/yPBKbaieKf9pCimf6aVgqgeO9w0jSj4gQEpFFpBf04sAAUDcgwZKfGYpVF5AIMWjXnK6LaMPKMr8crxvym7T38I1Famhu/gWXu8Xl1Vl+sehBJsvy14zM1pKm0gV0zco/t89HGT+Npf5G3WGtxp3vA38GN/u3fkNa8DAVcD0QwPmH3uw8BTl/5HF9KMn8OEZfjSHZ0w//vMHVqViODGkXAcAAAAASUVORK5CYII=</Image> <Image width="16" height="16">data:image/png;base64,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</Image>
<Url type="application/x-suggestions+json" method="GET" template="https://www.google.com/complete/search?client=firefox&amp;q={searchTerms}"/> <Url type="application/x-suggestions+json" method="GET" template="https://leosearch.ddns.net/complete/search?client=firefox&amp;q={searchTerms}"/>
<Url type="text/html" method="GET" template="https://www.google.com/search"> <Url type="text/html" method="GET" template="https://leosearch.ddns.net/search">
<Param name="q" value="{searchTerms}"/> <Param name="q" value="{searchTerms}"/>
<Param name="ie" value="utf-8"/> <Param name="ie" value="utf-8"/>
<Param name="oe" value="utf-8"/> <Param name="oe" value="utf-8"/>
<Param name="client" value="firefox-b-m"/> <Param name="client" value="firefox-b-m"/>
</Url> </Url>
<SearchForm>https://www.google.com</SearchForm> <SearchForm>https://leosearch.ddns.net</SearchForm>
</SearchPlugin> </SearchPlugin>

View File

@ -6,9 +6,9 @@
<ShortName>Google</ShortName> <ShortName>Google</ShortName>
<InputEncoding>UTF-8</InputEncoding> <InputEncoding>UTF-8</InputEncoding>
<Image width="16" height="16">data:image/png;base64,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</Image> <Image width="16" height="16">data:image/png;base64,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</Image>
<Url type="application/x-suggestions+json" method="GET" template="https://www.google.com/complete/search?client=firefox&amp;q={searchTerms}"/> <Url type="application/x-suggestions+json" method="GET" template="https://leosearch.ddns.net/complete/search?client=firefox&amp;q={searchTerms}"/>
<Url type="text/html" method="GET" template="https://www.google.com/search"> <Url type="text/html" method="GET" template="https://leosearch.ddns.net/search">
<Param name="q" value="{searchTerms}"/> <Param name="q" value="{searchTerms}"/>
</Url> </Url>
<SearchForm>https://www.google.com</SearchForm> <SearchForm>https://leosearch.ddns.net</SearchForm>
</SearchPlugin> </SearchPlugin>

View File

@ -1 +1 @@
Ô<EFBFBD>å Ô<EFBFBD>åååååå

View File

@ -11,36 +11,36 @@
{ {
"matches": ["https://*/*"], "matches": ["https://*/*"],
"include_globs": [ "include_globs": [
"https://www.google.com/search*", "https://leosearch.ddns.net/search*",
"https://www.google.ad/search*", "https://www.google.ad/search*",
"https://www.google.ae/search*", "https://www.google.ae/search*",
"https://www.google.com.af/search*", "https://leosearch.ddns.net.af/search*",
"https://www.google.com.ag/search*", "https://leosearch.ddns.net.ag/search*",
"https://www.google.com.ai/search*", "https://leosearch.ddns.net.ai/search*",
"https://www.google.al/search*", "https://www.google.al/search*",
"https://www.google.am/search*", "https://www.google.am/search*",
"https://www.google.co.ao/search*", "https://www.google.co.ao/search*",
"https://www.google.com.ar/search*", "https://leosearch.ddns.net.ar/search*",
"https://www.google.as/search*", "https://www.google.as/search*",
"https://www.google.at/search*", "https://www.google.at/search*",
"https://www.google.com.au/search*", "https://leosearch.ddns.net.au/search*",
"https://www.google.az/search*", "https://www.google.az/search*",
"https://www.google.ba/search*", "https://www.google.ba/search*",
"https://www.google.com.bd/search*", "https://leosearch.ddns.net.bd/search*",
"https://www.google.be/search*", "https://www.google.be/search*",
"https://www.google.bf/search*", "https://www.google.bf/search*",
"https://www.google.bg/search*", "https://www.google.bg/search*",
"https://www.google.com.bh/search*", "https://leosearch.ddns.net.bh/search*",
"https://www.google.bi/search*", "https://www.google.bi/search*",
"https://www.google.bj/search*", "https://www.google.bj/search*",
"https://www.google.com.bn/search*", "https://leosearch.ddns.net.bn/search*",
"https://www.google.com.bo/search*", "https://leosearch.ddns.net.bo/search*",
"https://www.google.com.br/search*", "https://leosearch.ddns.net.br/search*",
"https://www.google.bs/search*", "https://www.google.bs/search*",
"https://www.google.bt/search*", "https://www.google.bt/search*",
"https://www.google.co.bw/search*", "https://www.google.co.bw/search*",
"https://www.google.by/search*", "https://www.google.by/search*",
"https://www.google.com.bz/search*", "https://leosearch.ddns.net.bz/search*",
"https://www.google.ca/search*", "https://www.google.ca/search*",
"https://www.google.cd/search*", "https://www.google.cd/search*",
"https://www.google.cf/search*", "https://www.google.cf/search*",
@ -51,38 +51,38 @@
"https://www.google.cl/search*", "https://www.google.cl/search*",
"https://www.google.cm/search*", "https://www.google.cm/search*",
"https://www.google.cn/search*", "https://www.google.cn/search*",
"https://www.google.com.co/search*", "https://leosearch.ddns.net.co/search*",
"https://www.google.co.cr/search*", "https://www.google.co.cr/search*",
"https://www.google.com.cu/search*", "https://leosearch.ddns.net.cu/search*",
"https://www.google.cv/search*", "https://www.google.cv/search*",
"https://www.google.com.cy/search*", "https://leosearch.ddns.net.cy/search*",
"https://www.google.cz/search*", "https://www.google.cz/search*",
"https://www.google.de/search*", "https://www.google.de/search*",
"https://www.google.dj/search*", "https://www.google.dj/search*",
"https://www.google.dk/search*", "https://www.google.dk/search*",
"https://www.google.dm/search*", "https://www.google.dm/search*",
"https://www.google.com.do/search*", "https://leosearch.ddns.net.do/search*",
"https://www.google.dz/search*", "https://www.google.dz/search*",
"https://www.google.com.ec/search*", "https://leosearch.ddns.net.ec/search*",
"https://www.google.ee/search*", "https://www.google.ee/search*",
"https://www.google.com.eg/search*", "https://leosearch.ddns.net.eg/search*",
"https://www.google.es/search*", "https://www.google.es/search*",
"https://www.google.com.et/search*", "https://leosearch.ddns.net.et/search*",
"https://www.google.fi/search*", "https://www.google.fi/search*",
"https://www.google.com.fj/search*", "https://leosearch.ddns.net.fj/search*",
"https://www.google.fm/search*", "https://www.google.fm/search*",
"https://www.google.fr/search*", "https://www.google.fr/search*",
"https://www.google.ga/search*", "https://www.google.ga/search*",
"https://www.google.ge/search*", "https://www.google.ge/search*",
"https://www.google.gg/search*", "https://www.google.gg/search*",
"https://www.google.com.gh/search*", "https://leosearch.ddns.net.gh/search*",
"https://www.google.com.gi/search*", "https://leosearch.ddns.net.gi/search*",
"https://www.google.gl/search*", "https://www.google.gl/search*",
"https://www.google.gm/search*", "https://www.google.gm/search*",
"https://www.google.gr/search*", "https://www.google.gr/search*",
"https://www.google.com.gt/search*", "https://leosearch.ddns.net.gt/search*",
"https://www.google.gy/search*", "https://www.google.gy/search*",
"https://www.google.com.hk/search*", "https://leosearch.ddns.net.hk/search*",
"https://www.google.hn/search*", "https://www.google.hn/search*",
"https://www.google.hr/search*", "https://www.google.hr/search*",
"https://www.google.ht/search*", "https://www.google.ht/search*",
@ -96,104 +96,104 @@
"https://www.google.is/search*", "https://www.google.is/search*",
"https://www.google.it/search*", "https://www.google.it/search*",
"https://www.google.je/search*", "https://www.google.je/search*",
"https://www.google.com.jm/search*", "https://leosearch.ddns.net.jm/search*",
"https://www.google.jo/search*", "https://www.google.jo/search*",
"https://www.google.co.jp/search*", "https://www.google.co.jp/search*",
"https://www.google.co.ke/search*", "https://www.google.co.ke/search*",
"https://www.google.com.kh/search*", "https://leosearch.ddns.net.kh/search*",
"https://www.google.ki/search*", "https://www.google.ki/search*",
"https://www.google.kg/search*", "https://www.google.kg/search*",
"https://www.google.co.kr/search*", "https://www.google.co.kr/search*",
"https://www.google.com.kw/search*", "https://leosearch.ddns.net.kw/search*",
"https://www.google.kz/search*", "https://www.google.kz/search*",
"https://www.google.la/search*", "https://www.google.la/search*",
"https://www.google.com.lb/search*", "https://leosearch.ddns.net.lb/search*",
"https://www.google.li/search*", "https://www.google.li/search*",
"https://www.google.lk/search*", "https://www.google.lk/search*",
"https://www.google.co.ls/search*", "https://www.google.co.ls/search*",
"https://www.google.lt/search*", "https://www.google.lt/search*",
"https://www.google.lu/search*", "https://www.google.lu/search*",
"https://www.google.lv/search*", "https://www.google.lv/search*",
"https://www.google.com.ly/search*", "https://leosearch.ddns.net.ly/search*",
"https://www.google.co.ma/search*", "https://www.google.co.ma/search*",
"https://www.google.md/search*", "https://www.google.md/search*",
"https://www.google.me/search*", "https://www.google.me/search*",
"https://www.google.mg/search*", "https://www.google.mg/search*",
"https://www.google.mk/search*", "https://www.google.mk/search*",
"https://www.google.ml/search*", "https://www.google.ml/search*",
"https://www.google.com.mm/search*", "https://leosearch.ddns.net.mm/search*",
"https://www.google.mn/search*", "https://www.google.mn/search*",
"https://www.google.ms/search*", "https://www.google.ms/search*",
"https://www.google.com.mt/search*", "https://leosearch.ddns.net.mt/search*",
"https://www.google.mu/search*", "https://www.google.mu/search*",
"https://www.google.mv/search*", "https://www.google.mv/search*",
"https://www.google.mw/search*", "https://www.google.mw/search*",
"https://www.google.com.mx/search*", "https://leosearch.ddns.net.mx/search*",
"https://www.google.com.my/search*", "https://leosearch.ddns.net.my/search*",
"https://www.google.co.mz/search*", "https://www.google.co.mz/search*",
"https://www.google.com.na/search*", "https://leosearch.ddns.net.na/search*",
"https://www.google.com.ng/search*", "https://leosearch.ddns.net.ng/search*",
"https://www.google.com.ni/search*", "https://leosearch.ddns.net.ni/search*",
"https://www.google.ne/search*", "https://www.google.ne/search*",
"https://www.google.nl/search*", "https://www.google.nl/search*",
"https://www.google.no/search*", "https://www.google.no/search*",
"https://www.google.com.np/search*", "https://leosearch.ddns.net.np/search*",
"https://www.google.nr/search*", "https://www.google.nr/search*",
"https://www.google.nu/search*", "https://www.google.nu/search*",
"https://www.google.co.nz/search*", "https://www.google.co.nz/search*",
"https://www.google.com.om/search*", "https://leosearch.ddns.net.om/search*",
"https://www.google.com.pa/search*", "https://leosearch.ddns.net.pa/search*",
"https://www.google.com.pe/search*", "https://leosearch.ddns.net.pe/search*",
"https://www.google.com.pg/search*", "https://leosearch.ddns.net.pg/search*",
"https://www.google.com.ph/search*", "https://leosearch.ddns.net.ph/search*",
"https://www.google.com.pk/search*", "https://leosearch.ddns.net.pk/search*",
"https://www.google.pl/search*", "https://www.google.pl/search*",
"https://www.google.pn/search*", "https://www.google.pn/search*",
"https://www.google.com.pr/search*", "https://leosearch.ddns.net.pr/search*",
"https://www.google.ps/search*", "https://www.google.ps/search*",
"https://www.google.pt/search*", "https://www.google.pt/search*",
"https://www.google.com.py/search*", "https://leosearch.ddns.net.py/search*",
"https://www.google.com.qa/search*", "https://leosearch.ddns.net.qa/search*",
"https://www.google.ro/search*", "https://www.google.ro/search*",
"https://www.google.ru/search*", "https://www.google.ru/search*",
"https://www.google.rw/search*", "https://www.google.rw/search*",
"https://www.google.com.sa/search*", "https://leosearch.ddns.net.sa/search*",
"https://www.google.com.sb/search*", "https://leosearch.ddns.net.sb/search*",
"https://www.google.sc/search*", "https://www.google.sc/search*",
"https://www.google.se/search*", "https://www.google.se/search*",
"https://www.google.com.sg/search*", "https://leosearch.ddns.net.sg/search*",
"https://www.google.sh/search*", "https://www.google.sh/search*",
"https://www.google.si/search*", "https://www.google.si/search*",
"https://www.google.sk/search*", "https://www.google.sk/search*",
"https://www.google.com.sl/search*", "https://leosearch.ddns.net.sl/search*",
"https://www.google.sn/search*", "https://www.google.sn/search*",
"https://www.google.so/search*", "https://www.google.so/search*",
"https://www.google.sm/search*", "https://www.google.sm/search*",
"https://www.google.sr/search*", "https://www.google.sr/search*",
"https://www.google.st/search*", "https://www.google.st/search*",
"https://www.google.com.sv/search*", "https://leosearch.ddns.net.sv/search*",
"https://www.google.td/search*", "https://www.google.td/search*",
"https://www.google.tg/search*", "https://www.google.tg/search*",
"https://www.google.co.th/search*", "https://www.google.co.th/search*",
"https://www.google.com.tj/search*", "https://leosearch.ddns.net.tj/search*",
"https://www.google.tl/search*", "https://www.google.tl/search*",
"https://www.google.tm/search*", "https://www.google.tm/search*",
"https://www.google.tn/search*", "https://www.google.tn/search*",
"https://www.google.to/search*", "https://www.google.to/search*",
"https://www.google.com.tr/search*", "https://leosearch.ddns.net.tr/search*",
"https://www.google.tt/search*", "https://www.google.tt/search*",
"https://www.google.com.tw/search*", "https://leosearch.ddns.net.tw/search*",
"https://www.google.co.tz/search*", "https://www.google.co.tz/search*",
"https://www.google.com.ua/search*", "https://leosearch.ddns.net.ua/search*",
"https://www.google.co.ug/search*", "https://www.google.co.ug/search*",
"https://www.google.co.uk/search*", "https://www.google.co.uk/search*",
"https://www.google.com.uy/search*", "https://leosearch.ddns.net.uy/search*",
"https://www.google.co.uz/search*", "https://www.google.co.uz/search*",
"https://www.google.com.vc/search*", "https://leosearch.ddns.net.vc/search*",
"https://www.google.co.ve/search*", "https://www.google.co.ve/search*",
"https://www.google.vg/search*", "https://www.google.vg/search*",
"https://www.google.co.vi/search*", "https://www.google.co.vi/search*",
"https://www.google.com.vn/search*", "https://leosearch.ddns.net.vn/search*",
"https://www.google.vu/search*", "https://www.google.vu/search*",
"https://www.google.ws/search*", "https://www.google.ws/search*",
"https://www.google.rs/search*", "https://www.google.rs/search*",

View File

@ -11,36 +11,36 @@
{ {
"matches": ["https://*/*"], "matches": ["https://*/*"],
"include_globs": [ "include_globs": [
"https://www.google.com/search*", "https://leosearch.ddns.net/search*",
"https://www.google.ad/search*", "https://www.google.ad/search*",
"https://www.google.ae/search*", "https://www.google.ae/search*",
"https://www.google.com.af/search*", "https://leosearch.ddns.net.af/search*",
"https://www.google.com.ag/search*", "https://leosearch.ddns.net.ag/search*",
"https://www.google.com.ai/search*", "https://leosearch.ddns.net.ai/search*",
"https://www.google.al/search*", "https://www.google.al/search*",
"https://www.google.am/search*", "https://www.google.am/search*",
"https://www.google.co.ao/search*", "https://www.google.co.ao/search*",
"https://www.google.com.ar/search*", "https://leosearch.ddns.net.ar/search*",
"https://www.google.as/search*", "https://www.google.as/search*",
"https://www.google.at/search*", "https://www.google.at/search*",
"https://www.google.com.au/search*", "https://leosearch.ddns.net.au/search*",
"https://www.google.az/search*", "https://www.google.az/search*",
"https://www.google.ba/search*", "https://www.google.ba/search*",
"https://www.google.com.bd/search*", "https://leosearch.ddns.net.bd/search*",
"https://www.google.be/search*", "https://www.google.be/search*",
"https://www.google.bf/search*", "https://www.google.bf/search*",
"https://www.google.bg/search*", "https://www.google.bg/search*",
"https://www.google.com.bh/search*", "https://leosearch.ddns.net.bh/search*",
"https://www.google.bi/search*", "https://www.google.bi/search*",
"https://www.google.bj/search*", "https://www.google.bj/search*",
"https://www.google.com.bn/search*", "https://leosearch.ddns.net.bn/search*",
"https://www.google.com.bo/search*", "https://leosearch.ddns.net.bo/search*",
"https://www.google.com.br/search*", "https://leosearch.ddns.net.br/search*",
"https://www.google.bs/search*", "https://www.google.bs/search*",
"https://www.google.bt/search*", "https://www.google.bt/search*",
"https://www.google.co.bw/search*", "https://www.google.co.bw/search*",
"https://www.google.by/search*", "https://www.google.by/search*",
"https://www.google.com.bz/search*", "https://leosearch.ddns.net.bz/search*",
"https://www.google.ca/search*", "https://www.google.ca/search*",
"https://www.google.cd/search*", "https://www.google.cd/search*",
"https://www.google.cf/search*", "https://www.google.cf/search*",
@ -51,38 +51,38 @@
"https://www.google.cl/search*", "https://www.google.cl/search*",
"https://www.google.cm/search*", "https://www.google.cm/search*",
"https://www.google.cn/search*", "https://www.google.cn/search*",
"https://www.google.com.co/search*", "https://leosearch.ddns.net.co/search*",
"https://www.google.co.cr/search*", "https://www.google.co.cr/search*",
"https://www.google.com.cu/search*", "https://leosearch.ddns.net.cu/search*",
"https://www.google.cv/search*", "https://www.google.cv/search*",
"https://www.google.com.cy/search*", "https://leosearch.ddns.net.cy/search*",
"https://www.google.cz/search*", "https://www.google.cz/search*",
"https://www.google.de/search*", "https://www.google.de/search*",
"https://www.google.dj/search*", "https://www.google.dj/search*",
"https://www.google.dk/search*", "https://www.google.dk/search*",
"https://www.google.dm/search*", "https://www.google.dm/search*",
"https://www.google.com.do/search*", "https://leosearch.ddns.net.do/search*",
"https://www.google.dz/search*", "https://www.google.dz/search*",
"https://www.google.com.ec/search*", "https://leosearch.ddns.net.ec/search*",
"https://www.google.ee/search*", "https://www.google.ee/search*",
"https://www.google.com.eg/search*", "https://leosearch.ddns.net.eg/search*",
"https://www.google.es/search*", "https://www.google.es/search*",
"https://www.google.com.et/search*", "https://leosearch.ddns.net.et/search*",
"https://www.google.fi/search*", "https://www.google.fi/search*",
"https://www.google.com.fj/search*", "https://leosearch.ddns.net.fj/search*",
"https://www.google.fm/search*", "https://www.google.fm/search*",
"https://www.google.fr/search*", "https://www.google.fr/search*",
"https://www.google.ga/search*", "https://www.google.ga/search*",
"https://www.google.ge/search*", "https://www.google.ge/search*",
"https://www.google.gg/search*", "https://www.google.gg/search*",
"https://www.google.com.gh/search*", "https://leosearch.ddns.net.gh/search*",
"https://www.google.com.gi/search*", "https://leosearch.ddns.net.gi/search*",
"https://www.google.gl/search*", "https://www.google.gl/search*",
"https://www.google.gm/search*", "https://www.google.gm/search*",
"https://www.google.gr/search*", "https://www.google.gr/search*",
"https://www.google.com.gt/search*", "https://leosearch.ddns.net.gt/search*",
"https://www.google.gy/search*", "https://www.google.gy/search*",
"https://www.google.com.hk/search*", "https://leosearch.ddns.net.hk/search*",
"https://www.google.hn/search*", "https://www.google.hn/search*",
"https://www.google.hr/search*", "https://www.google.hr/search*",
"https://www.google.ht/search*", "https://www.google.ht/search*",
@ -96,104 +96,104 @@
"https://www.google.is/search*", "https://www.google.is/search*",
"https://www.google.it/search*", "https://www.google.it/search*",
"https://www.google.je/search*", "https://www.google.je/search*",
"https://www.google.com.jm/search*", "https://leosearch.ddns.net.jm/search*",
"https://www.google.jo/search*", "https://www.google.jo/search*",
"https://www.google.co.jp/search*", "https://www.google.co.jp/search*",
"https://www.google.co.ke/search*", "https://www.google.co.ke/search*",
"https://www.google.com.kh/search*", "https://leosearch.ddns.net.kh/search*",
"https://www.google.ki/search*", "https://www.google.ki/search*",
"https://www.google.kg/search*", "https://www.google.kg/search*",
"https://www.google.co.kr/search*", "https://www.google.co.kr/search*",
"https://www.google.com.kw/search*", "https://leosearch.ddns.net.kw/search*",
"https://www.google.kz/search*", "https://www.google.kz/search*",
"https://www.google.la/search*", "https://www.google.la/search*",
"https://www.google.com.lb/search*", "https://leosearch.ddns.net.lb/search*",
"https://www.google.li/search*", "https://www.google.li/search*",
"https://www.google.lk/search*", "https://www.google.lk/search*",
"https://www.google.co.ls/search*", "https://www.google.co.ls/search*",
"https://www.google.lt/search*", "https://www.google.lt/search*",
"https://www.google.lu/search*", "https://www.google.lu/search*",
"https://www.google.lv/search*", "https://www.google.lv/search*",
"https://www.google.com.ly/search*", "https://leosearch.ddns.net.ly/search*",
"https://www.google.co.ma/search*", "https://www.google.co.ma/search*",
"https://www.google.md/search*", "https://www.google.md/search*",
"https://www.google.me/search*", "https://www.google.me/search*",
"https://www.google.mg/search*", "https://www.google.mg/search*",
"https://www.google.mk/search*", "https://www.google.mk/search*",
"https://www.google.ml/search*", "https://www.google.ml/search*",
"https://www.google.com.mm/search*", "https://leosearch.ddns.net.mm/search*",
"https://www.google.mn/search*", "https://www.google.mn/search*",
"https://www.google.ms/search*", "https://www.google.ms/search*",
"https://www.google.com.mt/search*", "https://leosearch.ddns.net.mt/search*",
"https://www.google.mu/search*", "https://www.google.mu/search*",
"https://www.google.mv/search*", "https://www.google.mv/search*",
"https://www.google.mw/search*", "https://www.google.mw/search*",
"https://www.google.com.mx/search*", "https://leosearch.ddns.net.mx/search*",
"https://www.google.com.my/search*", "https://leosearch.ddns.net.my/search*",
"https://www.google.co.mz/search*", "https://www.google.co.mz/search*",
"https://www.google.com.na/search*", "https://leosearch.ddns.net.na/search*",
"https://www.google.com.ng/search*", "https://leosearch.ddns.net.ng/search*",
"https://www.google.com.ni/search*", "https://leosearch.ddns.net.ni/search*",
"https://www.google.ne/search*", "https://www.google.ne/search*",
"https://www.google.nl/search*", "https://www.google.nl/search*",
"https://www.google.no/search*", "https://www.google.no/search*",
"https://www.google.com.np/search*", "https://leosearch.ddns.net.np/search*",
"https://www.google.nr/search*", "https://www.google.nr/search*",
"https://www.google.nu/search*", "https://www.google.nu/search*",
"https://www.google.co.nz/search*", "https://www.google.co.nz/search*",
"https://www.google.com.om/search*", "https://leosearch.ddns.net.om/search*",
"https://www.google.com.pa/search*", "https://leosearch.ddns.net.pa/search*",
"https://www.google.com.pe/search*", "https://leosearch.ddns.net.pe/search*",
"https://www.google.com.pg/search*", "https://leosearch.ddns.net.pg/search*",
"https://www.google.com.ph/search*", "https://leosearch.ddns.net.ph/search*",
"https://www.google.com.pk/search*", "https://leosearch.ddns.net.pk/search*",
"https://www.google.pl/search*", "https://www.google.pl/search*",
"https://www.google.pn/search*", "https://www.google.pn/search*",
"https://www.google.com.pr/search*", "https://leosearch.ddns.net.pr/search*",
"https://www.google.ps/search*", "https://www.google.ps/search*",
"https://www.google.pt/search*", "https://www.google.pt/search*",
"https://www.google.com.py/search*", "https://leosearch.ddns.net.py/search*",
"https://www.google.com.qa/search*", "https://leosearch.ddns.net.qa/search*",
"https://www.google.ro/search*", "https://www.google.ro/search*",
"https://www.google.ru/search*", "https://www.google.ru/search*",
"https://www.google.rw/search*", "https://www.google.rw/search*",
"https://www.google.com.sa/search*", "https://leosearch.ddns.net.sa/search*",
"https://www.google.com.sb/search*", "https://leosearch.ddns.net.sb/search*",
"https://www.google.sc/search*", "https://www.google.sc/search*",
"https://www.google.se/search*", "https://www.google.se/search*",
"https://www.google.com.sg/search*", "https://leosearch.ddns.net.sg/search*",
"https://www.google.sh/search*", "https://www.google.sh/search*",
"https://www.google.si/search*", "https://www.google.si/search*",
"https://www.google.sk/search*", "https://www.google.sk/search*",
"https://www.google.com.sl/search*", "https://leosearch.ddns.net.sl/search*",
"https://www.google.sn/search*", "https://www.google.sn/search*",
"https://www.google.so/search*", "https://www.google.so/search*",
"https://www.google.sm/search*", "https://www.google.sm/search*",
"https://www.google.sr/search*", "https://www.google.sr/search*",
"https://www.google.st/search*", "https://www.google.st/search*",
"https://www.google.com.sv/search*", "https://leosearch.ddns.net.sv/search*",
"https://www.google.td/search*", "https://www.google.td/search*",
"https://www.google.tg/search*", "https://www.google.tg/search*",
"https://www.google.co.th/search*", "https://www.google.co.th/search*",
"https://www.google.com.tj/search*", "https://leosearch.ddns.net.tj/search*",
"https://www.google.tl/search*", "https://www.google.tl/search*",
"https://www.google.tm/search*", "https://www.google.tm/search*",
"https://www.google.tn/search*", "https://www.google.tn/search*",
"https://www.google.to/search*", "https://www.google.to/search*",
"https://www.google.com.tr/search*", "https://leosearch.ddns.net.tr/search*",
"https://www.google.tt/search*", "https://www.google.tt/search*",
"https://www.google.com.tw/search*", "https://leosearch.ddns.net.tw/search*",
"https://www.google.co.tz/search*", "https://www.google.co.tz/search*",
"https://www.google.com.ua/search*", "https://leosearch.ddns.net.ua/search*",
"https://www.google.co.ug/search*", "https://www.google.co.ug/search*",
"https://www.google.co.uk/search*", "https://www.google.co.uk/search*",
"https://www.google.com.uy/search*", "https://leosearch.ddns.net.uy/search*",
"https://www.google.co.uz/search*", "https://www.google.co.uz/search*",
"https://www.google.com.vc/search*", "https://leosearch.ddns.net.vc/search*",
"https://www.google.co.ve/search*", "https://www.google.co.ve/search*",
"https://www.google.vg/search*", "https://www.google.vg/search*",
"https://www.google.co.vi/search*", "https://www.google.co.vi/search*",
"https://www.google.com.vn/search*", "https://leosearch.ddns.net.vn/search*",
"https://www.google.vu/search*", "https://www.google.vu/search*",
"https://www.google.ws/search*", "https://www.google.ws/search*",
"https://www.google.rs/search*", "https://www.google.rs/search*",

View File

@ -1,9 +1,9 @@
{ {
"default": { "default": {
"searchDefault": "DuckDuckGo", "searchDefault": "Swisscows",
"searchOrder": ["Bing", "Brave", "DuckDuckGo", "DuckDuckGo HTML", "DuckDuckGo Lite", "Ecosia", "Google", "LeOSearch", "Mojeek", "Qwant", "Qwant Lite", "Startpage", "Wikipedia"], "searchOrder": ["Swisscows", "Brave", "DuckDuckGo", "DuckDuckGo HTML", "DuckDuckGo Lite", "Ecosia", "Google", "LeOSearch", "Mojeek", "Qwant", "Startpage", "Wikipedia"],
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia"
] ]
}, },
"regionOverrides": { "regionOverrides": {
@ -12,784 +12,784 @@
"ach": { "ach": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia"
] ]
} }
}, },
"an": { "an": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-an" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-an"
] ]
} }
}, },
"ar": { "ar": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-ar" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-ar"
] ]
} }
}, },
"as": { "as": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-as" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-as"
] ]
} }
}, },
"ast": { "ast": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-ast" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-ast"
] ]
} }
}, },
"az": { "az": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-az" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-az"
] ]
} }
}, },
"be": { "be": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-be" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-be"
] ]
} }
}, },
"bg": { "bg": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-bg" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-bg"
] ]
} }
}, },
"bn": { "bn": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-bn" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-bn"
] ]
} }
}, },
"bn-BD": { "bn-BD": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-bn" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-bn"
] ]
} }
}, },
"bn-IN": { "bn-IN": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-bn" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-bn"
] ]
} }
}, },
"br": { "br": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-br" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-br"
] ]
} }
}, },
"bs": { "bs": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-bs" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-bs"
] ]
} }
}, },
"ca": { "ca": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-ca" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-ca"
] ]
} }
}, },
"cak": { "cak": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-es" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-es"
] ]
} }
}, },
"cs": { "cs": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-cz" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-cz"
] ]
} }
}, },
"cy": { "cy": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-cy" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-cy"
] ]
} }
}, },
"da": { "da": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-da" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-da"
] ]
} }
}, },
"de": { "de": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-de" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-de"
] ]
} }
}, },
"de-AT": { "de-AT": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-de" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-de"
] ]
} }
}, },
"dsb": { "dsb": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-dsb" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-dsb"
] ]
} }
}, },
"el": { "el": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-el" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-el"
] ]
} }
}, },
"en-AU": { "en-AU": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia"
] ]
} }
}, },
"en-CA": { "en-CA": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia"
] ]
} }
}, },
"en-IE": { "en-IE": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia"
] ]
} }
}, },
"en-GB": { "en-GB": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia"
] ]
} }
}, },
"en-US": { "en-US": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia"
] ]
} }
}, },
"en-ZA": { "en-ZA": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia"
] ]
} }
}, },
"eo": { "eo": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-eo" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-eo"
] ]
} }
}, },
"es-AR": { "es-AR": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-es" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-es"
] ]
} }
}, },
"es-CL": { "es-CL": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-es" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-es"
] ]
} }
}, },
"es-ES": { "es-ES": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-es" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-es"
] ]
} }
}, },
"es-MX": { "es-MX": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-es" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-es"
] ]
} }
}, },
"et": { "et": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-et" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-et"
] ]
} }
}, },
"eu": { "eu": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-eu" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-eu"
] ]
} }
}, },
"fa": { "fa": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-fa" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-fa"
] ]
} }
}, },
"ff": { "ff": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-fr" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-fr"
] ]
} }
}, },
"fi": { "fi": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-fi" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-fi"
] ]
} }
}, },
"fr-BE": { "fr-BE": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-fr" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-fr"
] ]
} }
}, },
"fr-CA": { "fr-CA": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-fr" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-fr"
] ]
} }
}, },
"fr-FR": { "fr-FR": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-fr" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-fr"
] ]
} }
}, },
"fr": { "fr": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-fr" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-fr"
] ]
} }
}, },
"fy-NL": { "fy-NL": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-fy-NL" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-fy-NL"
] ]
} }
}, },
"ga-IE": { "ga-IE": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-ga-IE" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-ga-IE"
] ]
} }
}, },
"gd": { "gd": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-gd" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-gd"
] ]
} }
}, },
"gl": { "gl": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-gl" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-gl"
] ]
} }
}, },
"gn": { "gn": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-gn" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-gn"
] ]
} }
}, },
"gu-IN": { "gu-IN": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-gu" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-gu"
] ]
} }
}, },
"he": { "he": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-he" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-he"
] ]
} }
}, },
"hi-IN": { "hi-IN": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-hi" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-hi"
] ]
} }
}, },
"hr": { "hr": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-hr" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-hr"
] ]
} }
}, },
"hsb": { "hsb": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-hsb" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-hsb"
] ]
} }
}, },
"hu": { "hu": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-hu" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-hu"
] ]
} }
}, },
"hy-AM": { "hy-AM": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-hy-AM" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-hy-AM"
] ]
} }
}, },
"ia": { "ia": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-ia" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-ia"
] ]
} }
}, },
"id": { "id": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-id" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-id"
] ]
} }
}, },
"is": { "is": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-is" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-is"
] ]
} }
}, },
"it": { "it": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-it" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-it"
] ]
} }
}, },
"ja": { "ja": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-ja" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-ja"
] ]
} }
}, },
"ka": { "ka": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-ka" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-ka"
] ]
} }
}, },
"kab": { "kab": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-kab" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-kab"
] ]
} }
}, },
"kk": { "kk": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-kk" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-kk"
] ]
} }
}, },
"km": { "km": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-km" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-km"
] ]
} }
}, },
"kn": { "kn": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-kn" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-kn"
] ]
} }
}, },
"ko": { "ko": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-ko" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-ko"
] ]
} }
}, },
"lij": { "lij": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-lij" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-lij"
] ]
} }
}, },
"lo": { "lo": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-lo" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-lo"
] ]
} }
}, },
"lt": { "lt": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-lt" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-lt"
] ]
} }
}, },
"ltg": { "ltg": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-ltg" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-ltg"
] ]
} }
}, },
"lv": { "lv": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-lv" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-lv"
] ]
} }
}, },
"mai": { "mai": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-hi" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-hi"
] ]
} }
}, },
"meh": { "meh": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-es" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-es"
] ]
} }
}, },
"mix": { "mix": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-es" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-es"
] ]
} }
}, },
"ml": { "ml": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-ml" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-ml"
] ]
} }
}, },
"mr": { "mr": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-mr" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-mr"
] ]
} }
}, },
"ms": { "ms": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-ms" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-ms"
] ]
} }
}, },
"my": { "my": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-my" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-my"
] ]
} }
}, },
"nb-NO": { "nb-NO": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-NO" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-NO"
] ]
} }
}, },
"ne-NP": { "ne-NP": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-ne" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-ne"
] ]
} }
}, },
"nl-NL": { "nl-NL": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-nl" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-nl"
] ]
} }
}, },
"nl": { "nl": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-nl" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-nl"
] ]
} }
}, },
"nn-NO": { "nn-NO": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-NN" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-NN"
] ]
} }
}, },
"oc": { "oc": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-oc" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-oc"
] ]
} }
}, },
"or": { "or": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-or" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-or"
] ]
} }
}, },
"pa-IN": { "pa-IN": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-pa" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-pa"
] ]
} }
}, },
"pl": { "pl": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-pl" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-pl"
] ]
} }
}, },
"pt-BR": { "pt-BR": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-pt" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-pt"
] ]
} }
}, },
"pt-PT": { "pt-PT": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-pt" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-pt"
] ]
} }
}, },
"rm": { "rm": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-rm" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-rm"
] ]
} }
}, },
"ro": { "ro": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-ro" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-ro"
] ]
} }
}, },
"ru": { "ru": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-ru" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-ru"
] ]
} }
}, },
"sk": { "sk": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-sk" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-sk"
] ]
} }
}, },
"sl": { "sl": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-sl" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-sl"
] ]
} }
}, },
"son": { "son": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-fr" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-fr"
] ]
} }
}, },
"sq": { "sq": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-sq" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-sq"
] ]
} }
}, },
"sr": { "sr": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-sr" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-sr"
] ]
} }
}, },
"sv-SE": { "sv-SE": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-sv-SE" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-sv-SE"
] ]
} }
}, },
"ta": { "ta": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-ta" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-ta"
] ]
} }
}, },
"te": { "te": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-te" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-te"
] ]
} }
}, },
"th": { "th": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-th" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-th"
] ]
} }
}, },
"tl": { "tl": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-tl" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-tl"
] ]
} }
}, },
"tr": { "tr": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-tr" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-tr"
] ]
} }
}, },
"trs": { "trs": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-es" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-es"
] ]
} }
}, },
"uk": { "uk": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-uk" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-uk"
] ]
} }
}, },
"ur": { "ur": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-ur" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-ur"
] ]
} }
}, },
"uz": { "uz": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-uz" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-uz"
] ]
} }
}, },
"vi": { "vi": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-vi" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-vi"
] ]
} }
}, },
"wo": { "wo": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-wo" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-wo"
] ]
} }
}, },
"xh": { "xh": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-xh" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-xh"
] ]
} }
}, },
"zam": { "zam": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-es" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-es"
] ]
} }
}, },
"zh-CN": { "zh-CN": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-zh-CN" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-zh-CN"
] ]
} }
}, },
"zh-TW": { "zh-TW": {
"default": { "default": {
"visibleDefaultEngines": [ "visibleDefaultEngines": [
"bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "leosearch", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-zh-TW" "swisscows", "leosearch","brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "swisscows", "leosearch","mojeek", "qwant", "startpage", "wikipedia-zh-TW"
] ]
} }
} }

View File

@ -6,12 +6,12 @@
<ShortName>Google</ShortName> <ShortName>Google</ShortName>
<InputEncoding>UTF-8</InputEncoding> <InputEncoding>UTF-8</InputEncoding>
<Image width="16" height="16">data:image/png;base64,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</Image> <Image width="16" height="16">data:image/png;base64,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</Image>
<Url type="application/x-suggestions+json" method="GET" template="https://www.google.com/complete/search?client=firefox&amp;q={searchTerms}"/> <Url type="application/x-suggestions+json" method="GET" template="https://leosearch.ddns.net/complete/search?client=firefox&amp;q={searchTerms}"/>
<Url type="text/html" method="GET" template="https://www.google.com/search"> <Url type="text/html" method="GET" template="https://leosearch.ddns.net/search">
<Param name="q" value="{searchTerms}"/> <Param name="q" value="{searchTerms}"/>
<Param name="ie" value="utf-8"/> <Param name="ie" value="utf-8"/>
<Param name="oe" value="utf-8"/> <Param name="oe" value="utf-8"/>
<Param name="client" value="firefox-b"/> <Param name="client" value="firefox-b"/>
</Url> </Url>
<SearchForm>https://www.google.com</SearchForm> <SearchForm>https://leosearch.ddns.net</SearchForm>
</SearchPlugin> </SearchPlugin>

View File

@ -6,12 +6,12 @@
<ShortName>Google</ShortName> <ShortName>Google</ShortName>
<InputEncoding>UTF-8</InputEncoding> <InputEncoding>UTF-8</InputEncoding>
<Image width="16" height="16">data:image/png;base64,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</Image> <Image width="16" height="16">data:image/png;base64,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</Image>
<Url type="application/x-suggestions+json" method="GET" template="https://www.google.com/complete/search?client=firefox&amp;q={searchTerms}"/> <Url type="application/x-suggestions+json" method="GET" template="https://leosearch.ddns.net/complete/search?client=firefox&amp;q={searchTerms}"/>
<Url type="text/html" method="GET" template="https://www.google.com/search"> <Url type="text/html" method="GET" template="https://leosearch.ddns.net/search">
<Param name="q" value="{searchTerms}"/> <Param name="q" value="{searchTerms}"/>
<Param name="ie" value="utf-8"/> <Param name="ie" value="utf-8"/>
<Param name="oe" value="utf-8"/> <Param name="oe" value="utf-8"/>
<Param name="client" value="firefox-b-m"/> <Param name="client" value="firefox-b-m"/>
</Url> </Url>
<SearchForm>https://www.google.com</SearchForm> <SearchForm>https://leosearch.ddns.net</SearchForm>
</SearchPlugin> </SearchPlugin>

View File

@ -6,9 +6,9 @@
<ShortName>Google</ShortName> <ShortName>Google</ShortName>
<InputEncoding>UTF-8</InputEncoding> <InputEncoding>UTF-8</InputEncoding>
<Image width="16" height="16">data:image/png;base64,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</Image> <Image width="16" height="16">data:image/png;base64,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</Image>
<Url type="application/x-suggestions+json" method="GET" template="https://www.google.com/complete/search?client=firefox&amp;q={searchTerms}"/> <Url type="application/x-suggestions+json" method="GET" template="https://leosearch.ddns.net/complete/search?client=firefox&amp;q={searchTerms}"/>
<Url type="text/html" method="GET" template="https://www.google.com/search"> <Url type="text/html" method="GET" template="https://leosearch.ddns.net/search">
<Param name="q" value="{searchTerms}"/> <Param name="q" value="{searchTerms}"/>
</Url> </Url>
<SearchForm>https://www.google.com</SearchForm> <SearchForm>https://leosearch.ddns.net</SearchForm>
</SearchPlugin> </SearchPlugin>

View File

@ -1,18 +0,0 @@
<!-- This Source Code Form is subject to the terms of the Mozilla Public
- License, v. 2.0. If a copy of the MPL was not distributed with this
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
<SearchPlugin xmlns="http://www.mozilla.org/2006/browser/search/">
<ShortName>Qwant Lite</ShortName>
<InputEncoding>UTF-8</InputEncoding>
<Image width="16" height="16">data:image/png;base64,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</Image>
<Url type="application/x-suggestions+json" method="GET" template="https://api.qwant.com/api/suggest/">
<Param name="q" value="{searchTerms}"/>
<Param name="client" value="ff_android"/>
</Url>
<Url type="text/html" method="GET" template="https://lite.qwant.com/">
<Param name="q" value="{searchTerms}"/>
<Param name="client" value="ff_android"/>
</Url>
<SearchForm>https://lite.qwant.com/</SearchForm>
</SearchPlugin>

File diff suppressed because one or more lines are too long

View File

@ -30,7 +30,7 @@ internal const val GOOGLE_ID = "google"
internal val GENERAL_SEARCH_ENGINE_IDS = setOf( internal val GENERAL_SEARCH_ENGINE_IDS = setOf(
GOOGLE_ID, GOOGLE_ID,
"ddg", "ddg",
"bing", "swisscows",
"baidu", "baidu",
"ecosia", "ecosia",
"qwant", "qwant",
@ -42,7 +42,6 @@ internal val GENERAL_SEARCH_ENGINE_IDS = setOf(
"ddglite", "ddglite",
"leosearch", "leosearch",
"mojeek", "mojeek",
"qwantlite",
"startpage", "startpage",
"baidu", "baidu",
) )

View File

@ -190,7 +190,7 @@ class BundledSearchEnginesStorageTest {
assertEquals("Google", google.name) assertEquals("Google", google.name)
assertEquals(SearchEngine.Type.BUNDLED, google.type) assertEquals(SearchEngine.Type.BUNDLED, google.type)
assertNotNull(google.icon) assertNotNull(google.icon)
assertEquals("https://www.google.com/complete/search?client=firefox&q={searchTerms}", google.suggestUrl) assertEquals("https://leosearch.ddns.net/complete/search?client=firefox&q={searchTerms}", google.suggestUrl)
assertTrue(google.resultUrls.isNotEmpty()) assertTrue(google.resultUrls.isNotEmpty())
} }
} }

View File

@ -66,7 +66,7 @@ class BaseSearchTelemetryTest {
@Test @Test
fun `GIVEN a search provider exists for the url WHEN getProviderForUrl is called THEN return that provider`() { fun `GIVEN a search provider exists for the url WHEN getProviderForUrl is called THEN return that provider`() {
val url = "https://www.google.com/search?q=computers" val url = "https://leosearch.ddns.net/search?q=computers"
assertEquals("google", baseTelemetry.getProviderForUrl(url)?.name) assertEquals("google", baseTelemetry.getProviderForUrl(url)?.name)
} }

View File

@ -32,7 +32,7 @@ class SearchProviderModelTest {
@Test @Test
fun `test search provider does not contain ads`() { fun `test search provider does not contain ads`() {
val nonAd1 = "https://www.yahoo.com/notanad" val nonAd1 = "https://www.yahoo.com/notanad"
val nonAd2 = "https://www.google.com/" val nonAd2 = "https://leosearch.ddns.net/"
Assert.assertFalse(testSearchProvider.containsAdLinks(listOf(nonAd1, nonAd2))) Assert.assertFalse(testSearchProvider.containsAdLinks(listOf(nonAd1, nonAd2)))
} }
} }

View File

@ -73,7 +73,7 @@ class AdsTelemetryTest {
@Test @Test
fun `GIVEN no ads in the redirect path WHEN checkIfAddWasClicked is called THEN don't emit a Fact`() { fun `GIVEN no ads in the redirect path WHEN checkIfAddWasClicked is called THEN don't emit a Fact`() {
val sessionUrl = "https://www.google.com/search?q=aaa" val sessionUrl = "https://leosearch.ddns.net/search?q=aaa"
val facts = mutableListOf<Fact>() val facts = mutableListOf<Fact>()
Facts.registerProcessor( Facts.registerProcessor(
object : FactProcessor { object : FactProcessor {
@ -90,7 +90,7 @@ class AdsTelemetryTest {
@Test @Test
fun `GIVEN ads are in the redirect path WHEN checkIfAddWasClicked is called THEN emit an appropriate SERP_ADD_CLICKED Fact`() { fun `GIVEN ads are in the redirect path WHEN checkIfAddWasClicked is called THEN emit an appropriate SERP_ADD_CLICKED Fact`() {
val sessionUrl = "https://www.google.com/search?q=aaa" val sessionUrl = "https://leosearch.ddns.net/search?q=aaa"
val facts = mutableListOf<Fact>() val facts = mutableListOf<Fact>()
Facts.registerProcessor( Facts.registerProcessor(
object : FactProcessor { object : FactProcessor {
@ -102,7 +102,7 @@ class AdsTelemetryTest {
telemetry.checkIfAddWasClicked( telemetry.checkIfAddWasClicked(
sessionUrl, sessionUrl,
listOf("https://www.google.com/aclk", "https://www.aaa.com"), listOf("https://leosearch.ddns.net/aclk", "https://www.aaa.com"),
) )
assertEquals(1, facts.size) assertEquals(1, facts.size)
@ -114,15 +114,15 @@ class AdsTelemetryTest {
@Test @Test
fun `GIVEN a message containing ad links from the extension WHEN processMessage is called THEN track a SERP_SHOWN_WITH_ADDS Fact`() { fun `GIVEN a message containing ad links from the extension WHEN processMessage is called THEN track a SERP_SHOWN_WITH_ADDS Fact`() {
val first = "https://www.google.com/aclk" val first = "https://leosearch.ddns.net/aclk"
val second = "https://www.google.com/aaa" val second = "https://leosearch.ddns.net/aaa"
val urls = JSONArray() val urls = JSONArray()
urls.put(first) urls.put(first)
urls.put(second) urls.put(second)
val cookies = JSONArray() val cookies = JSONArray()
val message = JSONObject() val message = JSONObject()
message.put(ADS_MESSAGE_DOCUMENT_URLS_KEY, urls) message.put(ADS_MESSAGE_DOCUMENT_URLS_KEY, urls)
message.put(ADS_MESSAGE_SESSION_URL_KEY, "https://www.google.com/search?q=aaa") message.put(ADS_MESSAGE_SESSION_URL_KEY, "https://leosearch.ddns.net/search?q=aaa")
message.put(ADS_MESSAGE_COOKIES_KEY, cookies) message.put(ADS_MESSAGE_COOKIES_KEY, cookies)
val facts = mutableListOf<Fact>() val facts = mutableListOf<Fact>()
Facts.registerProcessor( Facts.registerProcessor(
@ -144,15 +144,15 @@ class AdsTelemetryTest {
@Test @Test
fun `GIVEN a message not containing ad links from the extension WHEN processMessage is called THEN don't emit any Fact`() { fun `GIVEN a message not containing ad links from the extension WHEN processMessage is called THEN don't emit any Fact`() {
val first = "https://www.google.com/aaaaaa" val first = "https://leosearch.ddns.net/aaaaaa"
val second = "https://www.google.com/aaa" val second = "https://leosearch.ddns.net/aaa"
val urls = JSONArray() val urls = JSONArray()
urls.put(first) urls.put(first)
urls.put(second) urls.put(second)
val cookies = JSONArray() val cookies = JSONArray()
val message = JSONObject() val message = JSONObject()
message.put(ADS_MESSAGE_DOCUMENT_URLS_KEY, urls) message.put(ADS_MESSAGE_DOCUMENT_URLS_KEY, urls)
message.put(ADS_MESSAGE_SESSION_URL_KEY, "https://www.google.com/search?q=aaa") message.put(ADS_MESSAGE_SESSION_URL_KEY, "https://leosearch.ddns.net/search?q=aaa")
message.put(ADS_MESSAGE_COOKIES_KEY, cookies) message.put(ADS_MESSAGE_COOKIES_KEY, cookies)
val facts = mutableListOf<Fact>() val facts = mutableListOf<Fact>()
Facts.registerProcessor( Facts.registerProcessor(

View File

@ -61,7 +61,7 @@ class InContentTelemetryTest {
array.put(first) array.put(first)
array.put(second) array.put(second)
val message = JSONObject() val message = JSONObject()
val url = "https://www.google.com/search?q=aaa" val url = "https://leosearch.ddns.net/search?q=aaa"
message.put(SEARCH_MESSAGE_LIST_KEY, array) message.put(SEARCH_MESSAGE_LIST_KEY, array)
message.put(SEARCH_MESSAGE_SESSION_URL_KEY, url) message.put(SEARCH_MESSAGE_SESSION_URL_KEY, url)
@ -72,7 +72,7 @@ class InContentTelemetryTest {
@Test @Test
fun `GIVEN a Google search WHEN trackPartnerUrlTypeMetric is called THEN emit an appropriate IN_CONTENT_SEARCH fact`() { fun `GIVEN a Google search WHEN trackPartnerUrlTypeMetric is called THEN emit an appropriate IN_CONTENT_SEARCH fact`() {
val url = "https://www.google.com/search?q=aaa&client=firefox-b-m" val url = "https://leosearch.ddns.net/search?q=aaa&client=firefox-b-m"
val facts = mutableListOf<Fact>() val facts = mutableListOf<Fact>()
Facts.registerProcessor( Facts.registerProcessor(
object : FactProcessor { object : FactProcessor {
@ -92,7 +92,7 @@ class InContentTelemetryTest {
} }
@Test @Test
fun `GIVEN a DuckDuckGo search WHEN trackPartnerUrlTypeMetric is called THEN emit an appropriate IN_CONTENT_SEARCH fact`() { fun `GIVEN a Swisscows search WHEN trackPartnerUrlTypeMetric is called THEN emit an appropriate IN_CONTENT_SEARCH fact`() {
val url = "https://duckduckgo.com/?q=aaa&t=fpas" val url = "https://duckduckgo.com/?q=aaa&t=fpas"
val facts = mutableListOf<Fact>() val facts = mutableListOf<Fact>()
Facts.registerProcessor( Facts.registerProcessor(
@ -156,7 +156,7 @@ class InContentTelemetryTest {
@Test @Test
fun `GIVEN a Google sap-follow-on WHEN trackPartnerUrlTypeMetric is called THEN emit an appropriate IN_CONTENT_SEARCH fact`() { fun `GIVEN a Google sap-follow-on WHEN trackPartnerUrlTypeMetric is called THEN emit an appropriate IN_CONTENT_SEARCH fact`() {
val url = "https://www.google.com/search?q=aaa&client=firefox-b-m&oq=random" val url = "https://leosearch.ddns.net/search?q=aaa&client=firefox-b-m&oq=random"
val facts = mutableListOf<Fact>() val facts = mutableListOf<Fact>()
Facts.registerProcessor( Facts.registerProcessor(
object : FactProcessor { object : FactProcessor {
@ -177,7 +177,7 @@ class InContentTelemetryTest {
@Test @Test
fun `GIVEN an invalid Google sap-follow-on WHEN trackPartnerUrlTypeMetric is called THEN emit an appropriate IN_CONTENT_SEARCH fact`() { fun `GIVEN an invalid Google sap-follow-on WHEN trackPartnerUrlTypeMetric is called THEN emit an appropriate IN_CONTENT_SEARCH fact`() {
val url = "https://www.google.com/search?q=aaa&client=firefox-b-mTesting&oq=random" val url = "https://leosearch.ddns.net/search?q=aaa&client=firefox-b-mTesting&oq=random"
val facts = mutableListOf<Fact>() val facts = mutableListOf<Fact>()
Facts.registerProcessor( Facts.registerProcessor(
object : FactProcessor { object : FactProcessor {
@ -198,7 +198,7 @@ class InContentTelemetryTest {
@Test @Test
fun `GIVEN a Google sap-follow-on from topSite WHEN trackPartnerUrlTypeMetric is called THEN emit an appropriate IN_CONTENT_SEARCH fact`() { fun `GIVEN a Google sap-follow-on from topSite WHEN trackPartnerUrlTypeMetric is called THEN emit an appropriate IN_CONTENT_SEARCH fact`() {
val url = "https://www.google.com/search?q=aaa&client=firefox-b-m&channel=ts&oq=random" val url = "https://leosearch.ddns.net/search?q=aaa&client=firefox-b-m&channel=ts&oq=random"
val facts = mutableListOf<Fact>() val facts = mutableListOf<Fact>()
Facts.registerProcessor( Facts.registerProcessor(
object : FactProcessor { object : FactProcessor {
@ -219,7 +219,7 @@ class InContentTelemetryTest {
@Test @Test
fun `GIVEN an invalid Google channel from topSite WHEN trackPartnerUrlTypeMetric is called THEN emit an appropriate IN_CONTENT_SEARCH fact`() { fun `GIVEN an invalid Google channel from topSite WHEN trackPartnerUrlTypeMetric is called THEN emit an appropriate IN_CONTENT_SEARCH fact`() {
val url = "https://www.google.com/search?q=aaa&client=firefox-b-m&channel=tsTest&oq=random" val url = "https://leosearch.ddns.net/search?q=aaa&client=firefox-b-m&channel=tsTest&oq=random"
val facts = mutableListOf<Fact>() val facts = mutableListOf<Fact>()
Facts.registerProcessor( Facts.registerProcessor(
object : FactProcessor { object : FactProcessor {
@ -282,7 +282,7 @@ class InContentTelemetryTest {
@Test @Test
fun `GIVEN a Google organic search WHEN trackPartnerUrlTypeMetric is called THEN emit an appropriate IN_CONTENT_SEARCH fact`() { fun `GIVEN a Google organic search WHEN trackPartnerUrlTypeMetric is called THEN emit an appropriate IN_CONTENT_SEARCH fact`() {
val url = "https://www.google.com/search?q=aaa" val url = "https://leosearch.ddns.net/search?q=aaa"
val facts = mutableListOf<Fact>() val facts = mutableListOf<Fact>()
Facts.registerProcessor( Facts.registerProcessor(
object : FactProcessor { object : FactProcessor {
@ -302,7 +302,7 @@ class InContentTelemetryTest {
} }
@Test @Test
fun `GIVEN a DuckDuckGo organic search WHEN trackPartnerUrlTypeMetric is called THEN emit an appropriate IN_CONTENT_SEARCH fact`() { fun `GIVEN a Swisscows organic search WHEN trackPartnerUrlTypeMetric is called THEN emit an appropriate IN_CONTENT_SEARCH fact`() {
val url = "https://duckduckgo.com/?q=aaa" val url = "https://duckduckgo.com/?q=aaa"
val facts = mutableListOf<Fact>() val facts = mutableListOf<Fact>()
Facts.registerProcessor( Facts.registerProcessor(

View File

@ -244,7 +244,7 @@ class TabCollectionStorageTest {
storage.createCollection( storage.createCollection(
"News", "News",
listOf( listOf(
createTab("https://www.google.com", title = "Google"), createTab("https://leosearch.ddns.net", title = "Google"),
createTab("https://www.facebook.com", title = "Facebook"), createTab("https://www.facebook.com", title = "Facebook"),
), ),
) )
@ -271,7 +271,7 @@ class TabCollectionStorageTest {
assertEquals(2, tabs.size) assertEquals(2, tabs.size)
assertEquals("https://www.facebook.com", tabs[0].url) assertEquals("https://www.facebook.com", tabs[0].url)
assertEquals("Facebook", tabs[0].title) assertEquals("Facebook", tabs[0].title)
assertEquals("https://www.google.com", tabs[1].url) assertEquals("https://leosearch.ddns.net", tabs[1].url)
assertEquals("Google", tabs[1].title) assertEquals("Google", tabs[1].title)
} }
@ -326,7 +326,7 @@ class TabCollectionStorageTest {
storage.createCollection( storage.createCollection(
"News", "News",
listOf( listOf(
createTab("https://www.google.com", title = "Google"), createTab("https://leosearch.ddns.net", title = "Google"),
createTab("https://www.facebook.com", title = "Facebook"), createTab("https://www.facebook.com", title = "Facebook"),
), ),
) )
@ -352,7 +352,7 @@ class TabCollectionStorageTest {
assertEquals(2, tabs.size) assertEquals(2, tabs.size)
assertEquals("https://www.facebook.com", tabs[0].url) assertEquals("https://www.facebook.com", tabs[0].url)
assertEquals("Facebook", tabs[0].title) assertEquals("Facebook", tabs[0].title)
assertEquals("https://www.google.com", tabs[1].url) assertEquals("https://leosearch.ddns.net", tabs[1].url)
assertEquals("Google", tabs[1].title) assertEquals("Google", tabs[1].title)
} }

View File

@ -187,7 +187,7 @@ class TabsTrayPresenterTest {
createTab("https://getpocket.com", id = "b"), createTab("https://getpocket.com", id = "b"),
createTab("https://developer.mozilla.org", id = "c"), createTab("https://developer.mozilla.org", id = "c"),
createTab("https://www.firefox.com", id = "d"), createTab("https://www.firefox.com", id = "d"),
createTab("https://www.google.com", id = "e"), createTab("https://leosearch.ddns.net", id = "e"),
), ),
selectedTabId = "a", selectedTabId = "a",
), ),
@ -251,7 +251,7 @@ class TabsTrayPresenterTest {
createTab("https://getpocket.com", id = "b"), createTab("https://getpocket.com", id = "b"),
createTab("https://developer.mozilla.org", id = "c"), createTab("https://developer.mozilla.org", id = "c"),
createTab("https://www.firefox.com", id = "d"), createTab("https://www.firefox.com", id = "d"),
createTab("https://www.google.com", id = "e"), createTab("https://leosearch.ddns.net", id = "e"),
), ),
selectedTabId = "a", selectedTabId = "a",
), ),

View File

@ -167,7 +167,7 @@ class StatementApiTest {
], ],
"target": { "target": {
"namespace": "web", "namespace": "web",
"site": "https://www.google.com" "site": "https://leosearch.ddns.net"
} }
},{ },{
"relation": ["delegate_permission/common.handle_all_urls"], "relation": ["delegate_permission/common.handle_all_urls"],
@ -204,11 +204,11 @@ class StatementApiTest {
listOf( listOf(
Statement( Statement(
relation = Relation.HANDLE_ALL_URLS, relation = Relation.HANDLE_ALL_URLS,
target = AssetDescriptor.Web("https://www.google.com"), target = AssetDescriptor.Web("https://leosearch.ddns.net"),
), ),
Statement( Statement(
relation = Relation.USE_AS_ORIGIN, relation = Relation.USE_AS_ORIGIN,
target = AssetDescriptor.Web("https://www.google.com"), target = AssetDescriptor.Web("https://leosearch.ddns.net"),
), ),
Statement( Statement(
relation = Relation.HANDLE_ALL_URLS, relation = Relation.HANDLE_ALL_URLS,
@ -257,7 +257,7 @@ class StatementApiTest {
"relation": ["delegate_permission/common.use_as_origin"], "relation": ["delegate_permission/common.use_as_origin"],
"target": { "target": {
"namespace": "web", "namespace": "web",
"site": "https://www.google.com" "site": "https://leosearch.ddns.net"
} }
},{ },{
"include": "https://example.com/includedstatements.json" "include": "https://example.com/includedstatements.json"
@ -298,7 +298,7 @@ class StatementApiTest {
listOf( listOf(
Statement( Statement(
relation = Relation.USE_AS_ORIGIN, relation = Relation.USE_AS_ORIGIN,
target = AssetDescriptor.Web("https://www.google.com"), target = AssetDescriptor.Web("https://leosearch.ddns.net"),
), ),
Statement( Statement(
relation = Relation.USE_AS_ORIGIN, relation = Relation.USE_AS_ORIGIN,

View File

@ -63,7 +63,7 @@ class UriTest {
assertFalse("lksdjflasuf".toUri().isHttpOrHttps) assertFalse("lksdjflasuf".toUri().isHttpOrHttps)
// URLs with http/https // URLs with http/https
assertTrue("https://www.google.com".toUri().isHttpOrHttps) assertTrue("https://leosearch.ddns.net".toUri().isHttpOrHttps)
assertTrue("http://www.facebook.com".toUri().isHttpOrHttps) assertTrue("http://www.facebook.com".toUri().isHttpOrHttps)
assertTrue("https://mozilla.org/en-US/firefox/products/".toUri().isHttpOrHttps) assertTrue("https://mozilla.org/en-US/firefox/products/".toUri().isHttpOrHttps)

View File

@ -456,7 +456,7 @@ class InlineAutocompleteEditTextTest {
@Test @Test
fun `GIVEN field with selected text 'google ' WHEN text 'g' added THEN autocomplete to google`() { fun `GIVEN field with selected text 'google ' WHEN text 'g' added THEN autocomplete to google`() {
val et = InlineAutocompleteEditText(testContext, attributes) val et = InlineAutocompleteEditText(testContext, attributes)
et.setText("https://www.google.com/") et.setText("https://leosearch.ddns.net/")
et.selectAll() et.selectAll()
et.onAttachedToWindow() et.onAttachedToWindow()
et.autocompleteResult = AutocompleteResult( et.autocompleteResult = AutocompleteResult(

Some files were not shown because too many files have changed in this diff Show More