summaryrefslogtreecommitdiff
path: root/chromium/chrome/common/extensions/docs/examples/api/deviceInfo/basic/manifest.json
blob: 4d376d84c525c2a1104cc348918c0f02d6cd6985 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
  "name": "My Devices",
  "version": "1.1",
  "description": "A browser action with a popup dump of all devices signed into the same account as the current profile.",
  "permissions": [
     "signedInDevices"
  ],
  "browser_action": {
      "default_title": "My Devices",
      "default_icon": "icon.png",
      "default_popup": "popup.html"
  },
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' https://ajax.googleapis.com; object-src 'self'"
}