1{ 2 "manifest_version": 2, 3 4 "name": "Screenshooter", 5 "description": "Take screenshots with ALL the APIs", 6 "version": "1.0", 7 8 "background": { 9 "scripts": ["background.js"], 10 "persistent": false 11 }, 12 13 "content_scripts": [ 14 { 15 "matches": ["<all_urls>"], 16 "js": ["content.js"] 17 } 18 ], 19 20 "commands": { 21 "activeTab": { 22 "suggested_key": { 23 "default": "Ctrl+Shift+Y" 24 }, 25 "description": "Enable activeTab permission for tabCapture" 26 } 27 }, 28 29 "permissions": [ 30 "desktopCapture", 31 "tabCapture", 32 "<all_urls>" 33 ] 34} 35