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

Side by Side 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: 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 unified diff | Download patch
« no previous file with comments | « chrome/browser/resources/chromeos/offers/main.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 // chrome-extension://dfgpjpjbeeflfdhdpabeeeheghdmeigc 2 // chrome-extension://dfgpjpjbeeflfdhdpabeeeheghdmeigc
3 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCzzB6c4Z0cusW6trA/issIOyMaxXtPfM YQclO0Dg5rOrS8SZLOAio0G4TpYDvY8z/BPdAH3a1BOSeetey8tBSdcIhOoYpqN3i9yIFuZVwHuOt83A WnJrxinVUpY05HtTblopGvGtQNlCR5crMdG+uc2yI3NlPOFZVDrFXtOv/LXQIDAQAB", 3 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCzzB6c4Z0cusW6trA/issIOyMaxXtPfM YQclO0Dg5rOrS8SZLOAio0G4TpYDvY8z/BPdAH3a1BOSeetey8tBSdcIhOoYpqN3i9yIFuZVwHuOt83A WnJrxinVUpY05HtTblopGvGtQNlCR5crMdG+uc2yI3NlPOFZVDrFXtOv/LXQIDAQAB",
4 "name": "Chrome OS Offers Extension", 4 "name": "Chrome OS Offers Extension",
5 "version": "0.0.1", 5 "version": "0.0.1",
6 "description": "Offers Component Extension", 6 "description": "Offers Component Extension",
7 "manifest_version": 2,
8 "content_security_policy": "script-src 'self' https://apis.google.com/js/; obj ect-src 'self'",
Jorge Lucangeli Obes 2012/03/27 16:22:58 I think this needs to be https://apis.google.com a
gauravsh 2012/03/27 17:08:25 No dice. Still gives me the same error. You can re
7 "permissions": [ 9 "permissions": [
10 "cookies",
8 "offersPrivate", 11 "offersPrivate",
9 "https://*.google.com/*" 12 "https://*/*"
10 ], 13 ],
14 "web_accessible_resources": [
15 "main.html",
16 "main.js"
17 ],
11 "intents": { 18 "intents": {
12 "https://crosoffers.com/checkOfferEligibility": { 19 "https://crosoffers.com/checkOfferEligibility": [{
13 "type" : ["application/vnd.chromeos.offers"], 20 "type" : ["application/vnd.chromeos.offers"],
14 "title" : "Redeem Chrome OS Offer", 21 "title" : "Redeem Chrome OS Offer",
15 "path" : "/main.html", 22 "path" : "main.html",
16 "disposition" : "window" 23 "disposition" : "window"
17 } 24 }]
18 } 25 }
19 } 26 }
OLDNEW
« 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