Create "declarative_net_request" part which should be included in Manifest file

In MV3 Url Blocking and Allowing Requests need to be specified in Manifest file (check Rulesets part here: https://developer.chrome.com/docs/extensions/reference/declarativeNetRequest/#manifest )

Example:

 "declarative_net_request" : {
    "rule_resources" : [{
      "id": "ruleset_1",
      "enabled": true,
      "path": "rules_1.json"
    }, {
      "id": "ruleset_2",
      "enabled": false,
      "path": "rules_2.json"
    }]
  }

There is a limit on Rulesets (check the documentation).

Acceptance Criteria

"declarative_net_request" which contains links to .json rulesets in DNR format is described (as the first step it could be just a manual how to create it based on the generated .json files, ideally it is an automated command line tool) the list of rulesets is defined by the default subscription list https://jira.eyeo.com/browse/ESDK-13 the "path" is pointing to json with generated filter lists with filters in DNR format .json files with DNR rulesets are a part of delivered SDK

Edited by Olha Levchenko