summaryrefslogtreecommitdiff
path: root/chromium/chrome/common/extensions/docs/examples/api/browserAction/set_page_color/manifest.json
blob: cecb2bccd11c6b94f002b4aa137169408cf6a2c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
  "name": "A browser action with a popup that changes the page color",
  "description": "Change the current page color",
  "version": "1.0",
  "permissions": [
    "activeTab"
  ],
  "browser_action": {
      "default_title": "Set this page's color.",
      "default_icon": "icon.png",
      "default_popup": "popup.html"
  },
  "manifest_version": 2
}