-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
168 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,159 @@ | ||
import {Store} from './store'; | ||
|
||
export const Megekko: Store = { | ||
labels: { | ||
inStock: { | ||
container: '.product-order .text_green', | ||
text: ['dag', 'werkdag'] | ||
}, | ||
maxPrice: { | ||
container: '.col_right_container .euro', | ||
euroFormat: false | ||
}, | ||
outOfStock: { | ||
container: '.product_detail .text_red', | ||
text: ['minimaal 10 dagen'] | ||
} | ||
}, | ||
links: [ | ||
{ | ||
brand: 'test:brand', | ||
model: 'test:model', | ||
series: 'test:series', | ||
url: 'https://www.megekko.nl/product/351421/' | ||
}, | ||
{ | ||
brand: 'asus', | ||
model: 'tuf', | ||
series: '3080', | ||
url: 'https://www.megekko.nl/product/1118232/' | ||
}, | ||
{ | ||
brand: 'asus', | ||
model: 'strix', | ||
series: '3080', | ||
url: 'https://www.megekko.nl/product/1119242/' | ||
}, | ||
{ | ||
brand: 'asus', | ||
model: 'strix oc', | ||
series: '3080', | ||
url: 'https://www.megekko.nl/product/1119243/' | ||
}, | ||
{ | ||
brand: 'asus', | ||
model: 'tuf oc', | ||
series: '3080', | ||
url: 'https://www.megekko.nl/product/1118233/' | ||
}, | ||
{ | ||
brand: 'evga', | ||
model: 'ftw3 ultra', | ||
series: '3080', | ||
url: 'https://www.megekko.nl/product/1118248/' | ||
}, | ||
{ | ||
brand: 'evga', | ||
model: 'ftw3 ultra', | ||
series: '3080', | ||
url: 'https://www.megekko.nl/product/1118249/' | ||
}, | ||
{ | ||
brand: 'evga', | ||
model: 'xc3', | ||
series: '3080', | ||
url: 'https://www.megekko.nl/product/1118247/' | ||
}, | ||
{ | ||
brand: 'evga', | ||
model: 'xc3 ultra', | ||
series: '3080', | ||
url: 'https://www.megekko.nl/product/1118260/' | ||
}, | ||
{ | ||
brand: 'evga', | ||
model: 'xc3 black', | ||
series: '3080', | ||
url: 'https://www.megekko.nl/product/1118246/' | ||
}, | ||
{ | ||
brand: 'gigabyte', | ||
model: 'gaming oc', | ||
series: '3080', | ||
url: 'https://www.megekko.nl/product/292736/' | ||
}, | ||
{ | ||
brand: 'gigabyte', | ||
model: 'vision oc', | ||
series: '3080', | ||
url: 'https://www.megekko.nl/product/293966/' | ||
}, | ||
{ | ||
brand: 'gigabyte', | ||
model: 'aorus master', | ||
series: '3080', | ||
url: 'https://www.megekko.nl/product/293965/' | ||
}, | ||
{ | ||
brand: 'gigabyte', | ||
model: 'aorus xtreme', | ||
series: '3080', | ||
url: 'https://www.megekko.nl/product/293964/' | ||
}, | ||
{ | ||
brand: 'gigabyte', | ||
model: 'aorus xtreme waterforce', | ||
series: '3080', | ||
url: 'https://www.megekko.nl/product/296925/' | ||
}, | ||
{ | ||
brand: 'gigabyte', | ||
model: 'eagle', | ||
series: '3080', | ||
url: 'https://www.megekko.nl/product/1125074/' | ||
}, | ||
{ | ||
brand: 'gigabyte', | ||
model: 'eagle oc', | ||
series: '3080', | ||
url: 'https://www.megekko.nl/product/292735/' | ||
}, | ||
{ | ||
brand: 'inno3d', | ||
model: 'ichill frostbite', | ||
series: '3080', | ||
url: 'https://www.megekko.nl/product/1125524/' | ||
}, | ||
{ | ||
brand: 'inno3d', | ||
model: 'ichill x3', | ||
series: '3080', | ||
url: 'https://www.megekko.nl/product/1118236/' | ||
}, | ||
{ | ||
brand: 'inno3d', | ||
model: 'ichill x4', | ||
series: '3080', | ||
url: 'https://www.megekko.nl/product/1118237/' | ||
}, | ||
{ | ||
brand: 'msi', | ||
model: 'gaming x trio', | ||
series: '3080', | ||
url: 'https://www.megekko.nl/product/292742/' | ||
}, | ||
{ | ||
brand: 'msi', | ||
model: 'ventus 3x oc', | ||
series: '3080', | ||
url: 'https://www.megekko.nl/product/292740/' | ||
}, | ||
{ | ||
brand: 'msi', | ||
model: 'suprim x', | ||
series: '3080', | ||
url: 'https://www.megekko.nl/product/295473/' | ||
} | ||
], | ||
name: 'megekko' | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters