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

Unified Diff: chrome/common/extensions/docs/examples/api/tabs/screenshot/manifest.json

Issue 490133002: Fixed Screenshot extension example (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Readded the onUpdated dance Created 6 years, 4 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: chrome/common/extensions/docs/examples/api/tabs/screenshot/manifest.json
diff --git a/chrome/common/extensions/docs/examples/api/tabs/screenshot/manifest.json b/chrome/common/extensions/docs/examples/api/tabs/screenshot/manifest.json
index c9ddae38f537c18e39345b0ce567e9abd5d85c21..2fae69d1e5e2a2fed27d50a6efc1fb94984d434f 100644
--- a/chrome/common/extensions/docs/examples/api/tabs/screenshot/manifest.json
+++ b/chrome/common/extensions/docs/examples/api/tabs/screenshot/manifest.json
@@ -1,7 +1,7 @@
{
"name": "Test Screenshot Extension",
- "version": "1.2",
- "description": "Demonstrate screenshot functionality in the chrome.tabs api. Note: only works for code.google.com",
+ "version": "1.3",
+ "description": "Demonstrate screenshot functionality in the chrome.tabs api.",
"background": {
"persistent": false,
"scripts": ["background.js"]
@@ -11,7 +11,7 @@
"default_title": "Take a screen shot!"
},
"permissions": [
- "*://code.google.com/"
+ "activeTab"
],
"manifest_version": 2
}

Powered by Google App Engine
This is Rietveld 408576698