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