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

Unified Diff: chrome/browser/resources/chromeos/offers/manifest.json

Issue 9865016: [Chrome OS ECHO] Add cookies permission to extension and change intent disposition to inline (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: inline Created 8 years, 9 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
« no previous file with comments | « chrome/browser/resources/chromeos/offers/main.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/chromeos/offers/manifest.json
diff --git a/chrome/browser/resources/chromeos/offers/manifest.json b/chrome/browser/resources/chromeos/offers/manifest.json
index 3956609f3da909c50c48043628256261830ce531..edb4ebdb35a84a8c192ec6b737e7ce54cbc35ce0 100644
--- a/chrome/browser/resources/chromeos/offers/manifest.json
+++ b/chrome/browser/resources/chromeos/offers/manifest.json
@@ -1,19 +1,28 @@
{
// chrome-extension://dfgpjpjbeeflfdhdpabeeeheghdmeigc
"key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCzzB6c4Z0cusW6trA/issIOyMaxXtPfMYQclO0Dg5rOrS8SZLOAio0G4TpYDvY8z/BPdAH3a1BOSeetey8tBSdcIhOoYpqN3i9yIFuZVwHuOt83AWnJrxinVUpY05HtTblopGvGtQNlCR5crMdG+uc2yI3NlPOFZVDrFXtOv/LXQIDAQAB",
- "name": "Chrome OS Offers Extension",
- "version": "0.0.1",
- "description": "Offers Component Extension",
+ "name": "Chrome OS ECHO Extension",
+ "version": "0.0.2",
+ "description": "Chrome OS ECHO Extension",
+ // TODO(gauravsh): Move to manifest version 2, get rid of https://www-googleapis-test.sandbox.google.com once
+ // production service is up and running. crosbug.com/28353
+ "manifest_version": 1,
+ "content_security_policy": "default-src 'self'; script-src 'self' 'unsafe-eval' https://apis.google.com; frame-src 'self' https://www.googleapis.com https://www-googleapis-test.sandbox.google.com; object-src 'self'",
"permissions": [
+ "cookies",
"offersPrivate",
- "https://*.google.com/*"
+ "https://*/*"
],
+ "web_accessible_resources": [
+ "main.html",
+ "main.js"
+ ],
"intents": {
- "https://crosoffers.com/checkOfferEligibility": {
- "type" : ["application/vnd.chromeos.offers"],
- "title" : "Redeem Chrome OS Offer",
- "path" : "/main.html",
- "disposition" : "window"
- }
+ "https://crosoffers.com/startEcho": [{
+ "type" : ["application/vnd.chromeos.echo"],
+ "title" : "Initiate Chrome OS ECHO",
+ "path" : "main.html",
+ "disposition" : "inline"
+ }]
}
}
« no previous file with comments | « chrome/browser/resources/chromeos/offers/main.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698