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

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

Issue 2824058: Add a simple cookies sample. (Closed) Base URL: git://codf21.jail/chromium.git
Patch Set: remove console.log statements Created 10 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/cookies/manifest.json
diff --git a/chrome/common/extensions/docs/examples/api/cookies/manifest.json b/chrome/common/extensions/docs/examples/api/cookies/manifest.json
new file mode 100644
index 0000000000000000000000000000000000000000..3abe984744d33ecedd0c6121ed189fe9fd816aa3
--- /dev/null
+++ b/chrome/common/extensions/docs/examples/api/cookies/manifest.json
@@ -0,0 +1,11 @@
+{
+ "name" : "Cookie API Test Extension",
+ "version" : "0.7",
+ "description" : "Testing Cookie API",
+ "permissions": [ "cookies", "tabs", "http://*/*", "https://*/*" ],
+ "icons": { "16": "cookie.png", "48": "cookie.png", "128": "cookie.png" },
+ "browser_action": {
+ "default_icon": "cookie.png"
+ },
+ "background_page": "background.html"
+}
« no previous file with comments | « chrome/common/extensions/docs/examples/api/cookies/manager.html ('k') | chrome/common/extensions/docs/static/cookies.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698