Chromium Code Reviews| 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..e92a210d11544cba59237c5ef3efdecbd12aaa54 100644 |
| --- a/chrome/browser/resources/chromeos/offers/manifest.json |
| +++ b/chrome/browser/resources/chromeos/offers/manifest.json |
| @@ -4,16 +4,23 @@ |
| "name": "Chrome OS Offers Extension", |
| "version": "0.0.1", |
| "description": "Offers Component Extension", |
| + "manifest_version": 2, |
| + "content_security_policy": "script-src 'self' https://apis.google.com/js/; object-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
|
| "permissions": [ |
| + "cookies", |
| "offersPrivate", |
| - "https://*.google.com/*" |
| + "https://*/*" |
| ], |
| + "web_accessible_resources": [ |
| + "main.html", |
| + "main.js" |
| + ], |
| "intents": { |
| - "https://crosoffers.com/checkOfferEligibility": { |
| + "https://crosoffers.com/checkOfferEligibility": [{ |
| "type" : ["application/vnd.chromeos.offers"], |
| "title" : "Redeem Chrome OS Offer", |
| - "path" : "/main.html", |
| + "path" : "main.html", |
| "disposition" : "window" |
| - } |
| + }] |
| } |
| } |