Array URLFilters
Description
URLFilters - an array of values in the structure of the root object or object Item. Each value in the array is a string - URL filter. While performing of the task, all of the loaded URL, containing one of the filters will be filtered out.
Structure
"URLFilters":["<URLFilter>", "<URLFilter>", ..., "<URLFilter>"]
Examples
Example code when URLFilters are in the root Items object.
{ "Items": [], "URLFilters":["mc.yandex.ru","?go="] }
- mc.yandex.ru - blocks all of the loading URL, containing mc.yandex.ru.
- ?go= - blocks all of the loading URL, containing ?go=.
Example code, when URLFilters are in the Item objects
{ "Items":[ { "URLFilters":["mc.yandex.ru","?go="] } ] }
Example code, when URLFilters are in the Item objects and in the root Items object
{ "Items":[ { "URLFilters":["mc.yandex.ru","?go="] } ], "URLFilters":["mc.yandex.ru","?go="] }