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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 {
2 "name": "Capture element",
3 "version": "1.0",
4 "description": "A simple extension to allow capturing a tab (or element).",
5 "background": {
6 "persistent": true,
7 "scripts": ["background.js"]
8 },
9 "permissions": [
10 "tabs", "http://*/*"
11 ],
12 "web_accessible_resources": [
13 "screenshot.js"
14 ],
15 "manifest_version": 2,
16 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDaabMsj6diZUZr1SCQTnB37+IWGtI+BH 0ZiktWMqCWVSH+HfOklfYGdH5d2i0Dd/q1K2X+ckD9vNy4p+6ewzahN6K70G4Bl5LhXuIc9B0CLMQZbW bDU9SMX05+D+99Ad7yfr5eUWgyWbQItntDRaTnuYVhkKRN2Kd6KWqzvEiUoQIDAQAB"
17 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698