OLD | NEW |
1 { | 1 { |
2 "name": "Close Background Page", | 2 "name": "Close Background Page", |
3 "description": "Click the browser action to close the background page.", | 3 "description": "Click the browser action to close the background page.", |
4 "version": "1", | 4 "version": "1", |
5 "manifest_version": 2, | 5 "manifest_version": 2, |
6 "background": { | 6 "background": { |
7 "scripts": ["background.js"] | 7 "scripts": ["background.js"] |
8 }, | 8 }, |
9 "browser_action": { | 9 "browser_action": { |
10 "default_icon" : "icon.png", | |
11 "default_title": "close background page" | 10 "default_title": "close background page" |
12 } | 11 } |
13 } | 12 } |
OLD | NEW |