Index: chrome/common/extensions/api/events.json |
diff --git a/chrome/common/extensions/api/events.json b/chrome/common/extensions/api/events.json |
index da3369413afed6bf96baf2d0e7b0f329a5789986..392a522ea1d387635ba4d002ed70c44449a0fce1 100644 |
--- a/chrome/common/extensions/api/events.json |
+++ b/chrome/common/extensions/api/events.json |
@@ -256,22 +256,22 @@ |
}, |
"urlContains": { |
"type": "string", |
- "description": "Matches if the URL contains a specified string.", |
+ "description": "Matches if the URL (without fragment identifier) contains a specified string. Port numbers are stripped from the URL in case they match the default port number.", |
Yoyo Zhou
2012/08/16 17:52:32
nit: I would write "if" instead of "in case".
battre
2012/08/16 18:29:16
Done.
|
"optional": true |
}, |
"urlEquals": { |
"type": "string", |
- "description": "Matches if the URL is equal to a specified string.", |
+ "description": "Matches if the URL (without fragment identifier) is equal to a specified string. Port numbers are stripped from the URL in case they match the default port number.", |
"optional": true |
}, |
"urlPrefix": { |
"type": "string", |
- "description": "Matches if the URL starts with a specified string.", |
+ "description": "Matches if the URL (without fragment identifier) starts with a specified string. Port numbers are stripped from the URL in case they match the default port number.", |
"optional": true |
}, |
"urlSuffix": { |
"type": "string", |
- "description": "Matches if the URL ends with a specified string.", |
+ "description": "Matches if the URL (without fragment identifier) ends with a specified string. Port numbers are stripped from the URL in case they match the default port number.", |
"optional": true |
}, |
"schemes": { |