Index: chrome/common/extensions/api/manifest_types.json |
diff --git a/chrome/common/extensions/api/manifest_types.json b/chrome/common/extensions/api/manifest_types.json |
index aa707e753be9b75aceb4c13bd17b4a9d8023878b..4f9588a0fcbb6160c6390aa4cf55a325e92a91f9 100644 |
--- a/chrome/common/extensions/api/manifest_types.json |
+++ b/chrome/common/extensions/api/manifest_types.json |
@@ -15,11 +15,13 @@ |
"description": "The schema of the <code>externally_connectable</code> manifest property", |
"properties": { |
"matches": { |
+ "description": "<p>The URL patterns for web pages that are allowed to connect. If left empty or unspecified, no web pages can connect.</p><p>Patterns cannot include wildcard domains nor subdomains of (effective) top level domains; <code>*://google.com/*</code> and <code>http://*.chromium.org/*</code> are valid, while <code><all_urls></code>, <code>http://*/*</code>, <code>*://*.com/*</code>, and even <code>http://*.appspot.com/*</code> are not.</p>", |
"optional": true, |
"type": "array", |
"items": {"type": "string"} |
}, |
"ids": { |
+ "description": "The IDs of extensions or apps that are allowed to connect. If left empty or unspecified, no extensions nor apps can connect. <code>*</code> will match all extension and app IDs.", |
"optional": true, |
"type": "array", |
"items": {"type": "string"} |