summaryrefslogtreecommitdiff
path: root/chromium/chrome/common/extensions/docs/examples/api/contextMenus/global_context_search/manifest.json
blob: df745d53022d06022fdb8d195d24a75c73a1a7c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
  "name": "Global Google Search",
  "description": "Use the context menu to search a different country's Google",
  "version": "1.0",
  "manifest_version": 2,
  "options_page": "options.html",
  "permissions": ["contextMenus", "storage"],
  "background": {
    "scripts": [ "locales.js", "background.js"],
    "persistent": false
  },
  "browser_action": {
    "default_popup": "options.html"
  },
  "icons": {
   "16": "globalGoogle16.png",
   "48": "globalGoogle48.png",
  "128": "globalGoogle128.png"
 }
}