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

{
  "name": "Exclude Matches, invalid host",
  "manifest_version": 2,
  "version": "1",
  "content_scripts": [
    {
      "js": ["script.js"],
      "matches": ["http://*.google.com/*"],
      "exclude_matches": ["http://*docs.google.com/*"]
    }
  ]
}