New rules and fixes

Hopefully this fixes the bugs from #41 and #43. In addition, new rules for ebay have been added and the Amazon ad domain `fls-na.amazon.com` is now blocked.
This commit is contained in:
Kevin Röbert 2018-05-08 20:24:52 +02:00
parent b7357c7566
commit 91c9a0e0cb

View File

@ -15,7 +15,6 @@
"ms3_c=[^\\/|\\?|&]*(\\/|&(amp;)?)?",
"[a-zA-Z%0-9]*ie=[^\\/|\\?|&]*(\\/|&(amp;)?)?",
"refRID=[^\\/|\\?|&]*(\\/|&(amp;)?)?",
"psc=[^\\/|\\?|&]*(\\/|&(amp;)?)?",
"colid=[^\\/|\\?|&]*(\\/|&(amp;)?)?",
"coliid=[^\\/|\\?|&]*(\\/|&(amp;)?)?",
"adId=[^\\/|\\?|&]*(\\/|&(amp;)?)?",
@ -27,6 +26,13 @@
],
"redirections": []
},
"fls-na.amazon": {
"urlPattern": "(https:\\/\\/||http:\\/\\/).*(fls-na\\.amazon\\.).*\\/.*",
"completeProvider": true,
"rules": [],
"exceptions": [],
"redirections": []
},
"google": {
"urlPattern": "(https:\\/\\/||http:\\/\\/).*([\\.]?google\\.).*\\/.*",
"completeProvider": false,
@ -113,7 +119,9 @@
"\\?$",
"\\&$"
],
"exceptions": [],
"exceptions": [
".*([\\.]?matrix\\.org)(\\/_matrix)\\/.*"
],
"redirections": []
},
"adtech": {
@ -284,6 +292,15 @@
],
"exceptions": [],
"redirections": []
},
"ebay": {
"urlPattern": "(https:\\/\\/||http:\\/\\/).*([\\.]?ebay\\.)\\w{2,}\\/.*",
"completeProvider": false,
"rules": [
"_trkparms=[^\\/|\\?|&]*(\\/|&(amp;)?)?"
],
"exceptions": [],
"redirections": []
}
}
}