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