Chromium Code Reviews| Index: chrome/common/extensions/api/_api_features.json |
| diff --git a/chrome/common/extensions/api/_api_features.json b/chrome/common/extensions/api/_api_features.json |
| index eb3047dd09b12cc878a125c10a39381b9665665a..0b57d0236970a485232688b5cc439af18413d2cd 100644 |
| --- a/chrome/common/extensions/api/_api_features.json |
| +++ b/chrome/common/extensions/api/_api_features.json |
| @@ -53,9 +53,8 @@ |
| "web_page", |
| "blessed_web_page" |
| ], |
| - "matches": [ |
| - "http://*/*", "https://*/*", "chrome-extension://*/*", "file://*/*" |
| - ] |
| + // Any webpage can use the app API. |
| + "matches": ["<all_urls>"] |
| }, |
| "appViewInternal": { |
| "internal": true, |
| @@ -763,12 +762,13 @@ |
| "webstore": { |
| // Hosted apps can use the webstore API from within a blessed context. |
| "channel": "stable", |
| - // Do not specify extension_types to prevent webstore from being filtered. |
| + // Set extension_types to 'all' to prevent webstore from being filtered. |
| // Technically, webstore is not in apps or extensions, but it is currently |
| // displayed on /extensions/webstore and /apps/webstore. |
|
not at google - send to devlin
2014/08/06 00:21:22
Also mention: the "contexts" restriction effective
sadrul
2014/08/06 02:00:13
Done.
|
| + "extension_types": "all", |
| "contexts": ["blessed_web_page", "web_page"], |
| // Any webpage can use the webstore API. |
| - "matches": ["http://*/*", "https://*/*"] |
| + "matches": ["<all_urls>"] |
| }, |
| "webstorePrivate": { |
| "dependencies": ["permission:webstorePrivate"], |