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

Side by Side Diff: chrome/browser/resources/gaia_auth/manifest_test.json

Issue 13872010: cros: Add a header for gaia auth requests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase, comments in #1 Created 7 years, 8 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 | Annotate | Revision Log
OLDNEW
1 { 1 {
2 // chrome-extension://mfffpogegjflfpflabcdkioaeobkgjik/ 2 // chrome-extension://mfffpogegjflfpflabcdkioaeobkgjik/
3 "key": "MIGdMA0GCSqGSIb3DQEBAQUAA4GLADCBhwKBgQC4L17nAfeTd6Xhtx96WhQ6DSr8KdHeQm fzgCkieKLCgUkWdwB9G1DCuh0EPMDn1MdtSwUAT7xE36APEzi0X/UpKjOVyX8tCC3aQcLoRAE0aJAvCc GwK7qIaQaczHmHKvPC2lrRdzSoMMTC5esvHX+ZqIBMi123FOL0dGW6OPKzIwIBIw==", 3 "key": "MIGdMA0GCSqGSIb3DQEBAQUAA4GLADCBhwKBgQC4L17nAfeTd6Xhtx96WhQ6DSr8KdHeQm fzgCkieKLCgUkWdwB9G1DCuh0EPMDn1MdtSwUAT7xE36APEzi0X/UpKjOVyX8tCC3aQcLoRAE0aJAvCc GwK7qIaQaczHmHKvPC2lrRdzSoMMTC5esvHX+ZqIBMi123FOL0dGW6OPKzIwIBIw==",
4 "name": "GaiaTestAuthExtension", 4 "name": "GaiaTestAuthExtension",
5 "version": "0.0.1", 5 "version": "0.0.1",
6 "manifest_version": 2, 6 "manifest_version": 2,
7 "content_security_policy": "default-src 'self'; script-src 'self'; frame-src ' self' https://insecure.com https://www.google.com/accounts/ https://accounts.goo gle.com https://accounts.youtube.com https://gaiastaging.corp.google.com", 7 "content_security_policy": "default-src 'self'; script-src 'self'; frame-src ' self' https://insecure.com https://www.google.com/accounts/ https://accounts.goo gle.com https://accounts.youtube.com https://gaiastaging.corp.google.com",
8 "description": "GAIA Test Component Extension", 8 "description": "GAIA Test Component Extension",
9 "content_scripts": [ 9 "content_scripts": [
10 { 10 {
11 "matches": [ 11 "matches": [
12 "https://www.google.com/accounts/*", 12 "https://www.google.com/accounts/*",
13 "https://accounts.google.com/*", 13 "https://accounts.google.com/*",
14 "https://gaiastaging.corp.google.com/*", 14 "https://gaiastaging.corp.google.com/*",
15 "https://insecure.com/*" 15 "https://insecure.com/*"
16 ], 16 ],
17 "js": ["test/content.js"], 17 "js": ["test/content.js"],
18 "all_frames": true 18 "all_frames": true
19 } 19 }
20 ], 20 ],
21 "background": {
22 "scripts": ["background.js"]
23 },
21 "web_accessible_resources": [ 24 "web_accessible_resources": [
22 "main.css", 25 "main.css",
23 "main.html", 26 "main.html",
24 "main.js", 27 "main.js",
25 "offline.css", 28 "offline.css",
26 "offline.html", 29 "offline.html",
27 "offline.js", 30 "offline.js",
28 "success.html", 31 "success.html",
29 "success.js", 32 "success.js",
30 "util.js", 33 "util.js",
31 "test/content.js" 34 "test/content.js"
32 ], 35 ],
33 "permissions": [ 36 "permissions": [
34 "https://insecure.com/*", 37 "background",
35 "https://www.google.com/accounts/*", 38 "webRequest",
36 "https://accounts.google.com/*", 39 "webRequestBlocking",
37 "https://gaiastaging.corp.google.com/*", 40 "<all_urls>"
38 "chrome://oobe/"
39 ] 41 ]
40 } 42 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698