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

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

Issue 398823002: Sample Extension for Tabs Zoom API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address comments, add runtime.lastError check. Created 6 years, 5 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/zoom/manifest.json
diff --git a/chrome/common/extensions/docs/examples/api/tabs/zoom/manifest.json b/chrome/common/extensions/docs/examples/api/tabs/zoom/manifest.json
new file mode 100644
index 0000000000000000000000000000000000000000..51db85b6d4078306c3fc333208f8419f30982ff5
--- /dev/null
+++ b/chrome/common/extensions/docs/examples/api/tabs/zoom/manifest.json
@@ -0,0 +1,24 @@
+{
+ "manifest_version": 2,
+
+ "name": "Tabs Zoom API Demo",
+ "description": "This extension allows the user to explore features of the new tabs zoom api.",
+
+ "version": "0.1",
+
+ "icons": {
+ "16": "zoom16.png",
+ "48": "zoom48.png"
+ },
+
+ "background": {
+ "scripts": ["background.js"],
+ "persistent": false
+ },
+
+ "browser_action": {
+ "default_icon": "zoom19.png",
+ "default_title": "Zoom Extension Demo",
+ "default_popup": "popup.html"
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698