This is a list of shopping websites.
To submit a website, please create an issue with a list of each site you want to add. You can also create a pull request for the dev branch, modifying the list.txt file. Sorting and other fixes are handled after each commit by sort.dart.
You can always get the latest available version using the jsDelivr CDN:
https://cdn.jsdelivr.net/gh/corbindavenport/shop-list/list.txt
It's also available through Statically CDN:
https://cdn.statically.io/gh/corbindavenport/shop-list/main/list.txt
It should also work directly through GitHub:
https://raw.githubusercontent.com/corbindavenport/shop-list/main/list.txt
You can download the list and process it using JavaScript, like this:
fetch('https://cdn.jsdelivr.net/gh/corbindavenport/shop-list/list.txt')
.then(res => {
return res.text()
}).then(text => {
console.log(text)
});
The list.txt file is a simple list of domains. An ABP-formatted version with wildcards may be added in the future as a new link.