summaryrefslogtreecommitdiff
path: root/chromium/chrome/common/extensions/docs/examples/api/power/manifest.json
blob: dd90842bd1cd27decdb9c054708f03b68a48ae5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
  "manifest_version": 2,

  "name": "__MSG_extensionName__",
  "description": "__MSG_extensionDescription__",
  "version": "1.9",
  "icons": {
    "16": "images/icon-16.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  },

  "permissions": [
    "power",
    "storage"
  ],
  "browser_action": {
    "default_title": "__MSG_disabledTitle__",
    "default_icon": {
      "19": "images/night-19.png",
      "38": "images/night-38.png"
    }
  },
  "background": {
    "scripts": ["background.js"],
    "persistent": false
  },

  "default_locale": "en"
}