| OLD | NEW |
| 1 { | 1 { |
| 2 "name": "Keyboard Pin", | 2 "name": "Keyboard Pin", |
| 3 "version": "0.1", | 3 "version": "0.1", |
| 4 "description": "Creates a keyboard shortcut (C + Shift + P) to toggle the pinn
ed state of the currently selected tab", | 4 "description": "Creates a keyboard shortcut (C + Shift + P) to toggle the pinn
ed state of the currently selected tab", |
| 5 "permissions": [ | 5 "permissions": [ |
| 6 "tabs" | 6 "tabs" |
| 7 ], | 7 ], |
| 8 "background_page": "background.html", | 8 "background_page": "background.html", |
| 9 "content_scripts": [ | 9 "content_scripts": [ |
| 10 { | 10 { |
| 11 "matches": ["<all_urls>"], | 11 "matches": ["<all_urls>"], |
| 12 "js": ["inject.js"] | 12 "js": ["inject.js"] |
| 13 } | 13 } |
| 14 ] | 14 ], |
| 15 "content_security_policy": "default-src 'self'" |
| 15 } | 16 } |
| OLD | NEW |