]> git.wh0rd.org - chrome-ext/tabs-backup.git/blame - manifest.json
migrate from localStorage to chrome.storage.local
[chrome-ext/tabs-backup.git] / manifest.json
CommitLineData
70c1267e 1{
e0b6a877 2 "name": "vapier tabs backup",
68553004 3 "version": "0.2.1.4",
70c1267e
MF
4 "manifest_version": 2,
5 "description": "With 'Tabs Backup & Restore' you will never lose your work again! Backup an entire Chrome session (windows and tabs).",
6 "icons": { "16": "icon_16.png",
7 "48": "icon_48.png",
8 "128": "icon_128.png" },
9 "background": {
e0b6a877 10 "persistent": false,
70c1267e
MF
11 "scripts": ["background.js"]
12 },
ef2d5d31
MF
13 "options_ui": {
14 "page": "options.html",
15 "chrome_style": true
16 },
70c1267e
MF
17 "browser_action": {
18 "default_icon": "icon_48.png",
19 "default_popup": "popup.html"
20 },
21 "permissions": [
22 "alarms",
23 "storage",
24 "tabs",
25 "unlimitedStorage"
26 ]
27}