This repository has been archived by the owner on Jun 22, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
ca.ts
96 lines (95 loc) · 2.44 KB
/
ca.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
import { Store, Category } from '../stores'
import { amazonDevicesStores } from './_amazon-devices'
export const stores: Store[] = [
...amazonDevicesStores,
{
title: 'leslibraires.ca',
url: 'https://www.leslibraires.ca/recherche/?t=&a=&e=&c=&i=%1$s&f=&ip=',
categories: [Category.ENGLISH_BOOKS, Category.STRIPBOOKS, Category.BOOKS],
},
{
title: 'kobo.com',
url: 'https://www.kobo.com/ca/en/search?query=%1$s',
categories: [Category.DIGITAL_TEXT],
},
{
title: 'feedbooks.com',
url: 'https://www.feedbooks.com/search?lang=en&query=%1$s',
categories: [Category.DIGITAL_TEXT],
},
{
title: 'ethicalbooksearch.com',
url: 'https://www.ethicalbooksearch.com/ca?source=amazon-alternatives-extension&query=%1$s',
categories: [Category.ENGLISH_BOOKS, Category.STRIPBOOKS, Category.BOOKS, Category.DIGITAL_TEXT],
},
{
title: 'bestbuy.ca',
url: 'https://www.bestbuy.ca/en-ca/search?search=%1$s',
categories: [
Category.AUTOMOTIVE,
Category.ELECTRONICS,
Category.COMPUTERS,
Category.PC,
Category.APPLE_DEVICES,
Category.APPLIANCES,
Category.KITCHEN,
Category.POPULAR,
Category.DVD,
Category.VIDEOGAMES,
Category.CLASSICAL,
Category.LUGGAGE,
Category.BEAUTY,
Category.LUXURY_BEAUTY,
Category.JEWELRY,
Category.DIY,
Category.BABY,
Category.TOYS,
Category.OFFICE_PRODUCTS,
Category.GARDEN,
Category.PHOTO,
Category.APPAREL,
Category.CLOTHING,
],
},
{
title: 'newegg.ca',
url: 'https://www.newegg.ca/p/pl?d=%1$s',
categories: [
Category.ELECTRONICS,
Category.COMPUTERS,
Category.PC,
Category.APPLE_DEVICES,
Category.SOFTWARE,
Category.DVD,
Category.TOYS,
Category.VIDEOGAMES,
Category.SOFTWARE,
Category.APPLIANCES,
Category.KITCHEN,
Category.SHOES,
Category.DIY,
Category.FASHION,
Category.LUGGAGE,
Category.WATCHES,
Category.GARDEN,
Category.PHOTO,
Category.APPAREL,
Category.CLOTHING,
],
},
{
title: 'pc-canada.com',
url: 'https://www.pc-canada.com/p/go/go.asp?SearchString=%1$s',
categories: [
Category.ELECTRONICS,
Category.COMPUTERS,
Category.PC,
Category.APPLE_DEVICES,
Category.SOFTWARE,
Category.DVD,
Category.VIDEOGAMES,
Category.SOFTWARE,
Category.PHOTO,
],
},
]