Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 { | 5 { |
| 6 "app": { | |
| 7 "channel": "stable", | |
| 8 "extension_types": ["hosted_app", "extension"], | |
| 9 "contexts": ["blessed_extension", "unblessed_extension", "content_script", " web_page"], | |
|
not at google - send to devlin
2013/04/04 01:30:26
80 characters
cduvall
2013/04/11 00:02:56
Done.
| |
| 10 "matches": [ "<all_urls>" ] | |
|
not at google - send to devlin
2013/04/04 01:30:26
no spaces around this (sorry...)
cduvall
2013/04/11 00:02:56
Done.
| |
| 11 }, | |
| 12 "app.runtime": { | |
| 13 "channel": "stable", | |
| 14 "contexts": ["blessed_extension"], | |
| 15 "dependencies": ["permission:app.runtime"] | |
| 16 }, | |
| 17 "app.window": { | |
| 18 "channel": "stable", | |
| 19 "contexts": ["blessed_extension"], | |
| 20 "dependencies": ["permission:app.window"] | |
| 21 }, | |
| 6 "app.currentWindowInternal": { | 22 "app.currentWindowInternal": { |
| 7 "internal": true, | 23 "internal": true, |
| 8 "channel": "stable", | 24 "channel": "stable", |
| 9 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] | 25 "contexts": ["blessed_extension", "unblessed_extension", "content_script"] |
| 10 }, | 26 }, |
| 11 "bookmarks": { | 27 "bookmarks": { |
| 12 "channel": "stable", | 28 "channel": "stable", |
| 13 "dependencies": ["permission:bookmarks"], | 29 "dependencies": ["permission:bookmarks"], |
| 14 "contexts": ["blessed_extension"] | 30 "contexts": ["blessed_extension"] |
| 15 }, | 31 }, |
| (...skipping 20 matching lines...) Expand all Loading... | |
| 36 }, | 52 }, |
| 37 "webstore": { | 53 "webstore": { |
| 38 // Hosted apps can use the webstore API from within a blessed context. | 54 // Hosted apps can use the webstore API from within a blessed context. |
| 39 "channel": "stable", | 55 "channel": "stable", |
| 40 "extension_types": ["hosted_app"], | 56 "extension_types": ["hosted_app"], |
| 41 "contexts": ["blessed_extension", "web_page"], | 57 "contexts": ["blessed_extension", "web_page"], |
| 42 // Any webpage can use the webstore API. | 58 // Any webpage can use the webstore API. |
| 43 "matches": [ "http://*/*", "https://*/*" ] | 59 "matches": [ "http://*/*", "https://*/*" ] |
| 44 } | 60 } |
| 45 } | 61 } |
| OLD | NEW |