aboutsummaryrefslogtreecommitdiffstats
path: root/manifest.json
blob: 31428b8097b7e08aadd55a582d7ab1a25b67351e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
  "manifest_version": 2,

  "name": "Chrome Copy URLs From All Tabs",
  "description": "What the name says",
  "version": "0.1.0",
  
  "browser_action": {
      
  },
  
  "options_page": "options.html",
  
  "background": {
      "scripts": ["chrome-get-urls-from-tabs-in-windows.js", "background.js"],
      "persistent": false
  },
  
  "permissions": [
      "tabs",
	  "storage"
  ]
}