Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(20)

Unified Diff: native_client_sdk/src/build_tools/screenshot_extension/manifest.json

Issue 23458018: [NaCl SDK] Screen capture extension for use with SDK visual testing. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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"
+}

Powered by Google App Engine
This is Rietveld 408576698