chromium/chrome/test/data/extensions/manifest_tests/content_script_match_origin_as_fallback.json

{
  "name": "Content scripts matching data urls",
  "description": "ContentScriptsManifestTest.MatchDataURLs*",
  "version": "0.1",
  "manifest_version": 3,
  "content_scripts": [{
    "matches": ["https://example.com/*"],
    "match_origin_as_fallback": true,
    "js": ["file.js"]
  }, {
    "matches": ["https://foo.example/*"],
    "match_origin_as_fallback": false,
    "js": ["file.js"]
  }, {
    "matches": ["https://and.example/*"],
    "match_about_blank": true,
    "js": ["file.js"]
  }, {
    "matches": ["https://another.example/*"],
    "match_about_blank": false,
    "js": ["file.js"]
  }, {
    "matches": ["https://bar.example/*"],
    "match_origin_as_fallback": false,
    "match_about_blank": true,
    "js": ["file.js"]
  }, {
    "matches": ["https://baz.example/*"],
    "match_origin_as_fallback": true,
    "match_about_blank": false,
    "js": ["file.js"]
  }, {
    "matches": ["https://example.example/*"],
    "js": ["file.js"]
  }]
}