chromium/chrome/test/data/extensions/api_test/permissions_test/embedded_into_iframe/has_permissions/manifest.json

{
  // Extension ID: knldjmfmopnpolahpmmgbagdohdnhkik
  "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDcBHwzDvyBQ6bDppkIs9MP4ksKqCMyXQ/A52JivHZKh4YO/9vJsT3oaYhSpDCE9RPocOEQvwsHsFReW2nUEc6OLLyoCFFxIb7KkLGsmfakkut/fFdNJYh0xOTbSN8YvLWcqph09XAY2Y/f0AL7vfO1cuCqtkMt8hFrBGWxDdf9CQIDAQAB",
  "name": "Permissions test extension",
  "version": "0.1",
  "manifest_version": 2,
  "description": "Tests whether an extension can request permissions.",
  "content_scripts": [
    {
      "matches": [
        "http://a.test/*"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "iframe_content.html"
  ],
  "permissions": [
    "geolocation",
    "notifications"
  ]
}