Index: native_client_sdk/src/build_tools/screenshot_extension/manifest.json |
diff --git a/native_client_sdk/src/build_tools/screenshot_extension/manifest.json b/native_client_sdk/src/build_tools/screenshot_extension/manifest.json |
new file mode 100644 |
index 0000000000000000000000000000000000000000..23f3b4695ecf3aa4a3ba90775945129f6385ac47 |
--- /dev/null |
+++ b/native_client_sdk/src/build_tools/screenshot_extension/manifest.json |
@@ -0,0 +1,17 @@ |
+{ |
+ "name": "Capture element", |
+ "version": "1.0", |
+ "description": "A simple extension to allow capturing a tab (or element).", |
+ "background": { |
+ "persistent": true, |
+ "scripts": ["background.js"] |
+ }, |
+ "permissions": [ |
+ "tabs", "http://*/*" |
+ ], |
+ "web_accessible_resources": [ |
+ "screenshot.js" |
+ ], |
+ "manifest_version": 2, |
+ "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDaabMsj6diZUZr1SCQTnB37+IWGtI+BH0ZiktWMqCWVSH+HfOklfYGdH5d2i0Dd/q1K2X+ckD9vNy4p+6ewzahN6K70G4Bl5LhXuIc9B0CLMQZbWbDU9SMX05+D+99Ad7yfr5eUWgyWbQItntDRaTnuYVhkKRN2Kd6KWqzvEiUoQIDAQAB" |
+} |