This commit is contained in:
Kevin Röbert 2017-08-04 03:21:44 +02:00
parent 75e1571b90
commit e4257a953d
2 changed files with 5 additions and 2 deletions

View File

@ -13,7 +13,7 @@ function fetchFromURL(url)
}
}
var data = fetchFromURL('https://raw.githubusercontent.com/KevinRoebert/ClearUrls/master/data/data.json');
var data = fetchFromURL('https://raw.githubusercontent.com/KevinRoebert/ClearUrls/master/data/data.json') || [];
var providers = [];
// ##################################################################
@ -200,6 +200,9 @@ function createProviders()
//Create new provider
providers.push(new Provider(data.providers[p],data.providers[p].completeProvider));
//Add URL Pattern
providers[p].setURLPattern(data.providers[p].urlPattern);
//Add rules to provider
for(var r = 0; r < data.providers[p].rules.length; r++)
{

View File

@ -1,7 +1,7 @@
{
"providers": {
"amazon": {
"urlPattern": "",
"urlPattern": "(https:\\/\\/||http:\\/\\/).*(\\.amazon\\.)\\w{2,}\\/.*",
"completeProvider": true,
"rules": [
"pf_rd_[a-zA-Z]=[a-zA-Z0-9\\-\\.\\_]*[\\?|&]?",