chromium/chrome/test/data/extensions/api_test/content_scripts/fragment/manifest.json

{
  "name": "content_scripts_fragment_navigation",
  "version": "1.0",
  "manifest_version": 2,
  "description": "Tests content scripts running with navigation to fragments within a page",
  "background": {
    "scripts": ["background.js"],
    "persistent": true
  },
  "permissions": ["tabs"],
  "content_scripts": [
    { "matches": ["http://*/*"], "js": ["content_script.js"] }
  ]
}