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

{
  "name": "content_script_storage_api_default_access",
  "version": "1.0",
  "manifest_version": 3,
  "description": "Tests the Storage API behavior with default access level (trusted) from a content script.",
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "permissions": ["scripting", "storage"],
  "host_permissions": ["http://example.com/*"],
  "content_scripts": [
    {
      "matches": ["http://*/extensions/test_file.html"],
      "js": ["content_script.js"]
    },
    {
      "matches": ["http://example.com/*"],
      "js": ["listener_script.js"],
      "runAt": "document_end"
    }
  ]
}