aboutsummaryrefslogtreecommitdiffhomepage
path: root/manifest.json
blob: b8a3c08469a4a1d73e7c62abefece7e4b095f450 (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": "Wayback Machine Lookup",
  "version": "1.2.0",
  "description": "Reopen the current tab in the Wayback Machine",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "page_action": {
    "default_title": "Reopen the current tab in the Wayback Machine"
  },
  "author": "Benjamin Barenblat <bbaren@google.com>",
  "background": {
    "persistent": false,
    "scripts": ["background.js"]
  },
  "minimum_chrome_version": "35",
  "options_ui": {
    "chrome_style": true,
    "page": "options.html"
  },
  "permissions": [
    "activeTab",
    "contextMenus",
    "declarativeContent",
    "storage"
  ]
}