Chromium Code Reviews

Side by Side Diff: chrome/common/extensions/docs/static/match_patterns.html

Issue 2864035: Fix up extension docs to include latest changes to how file URLs work with (Closed)
Patch Set: spelling Created 10 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff |
« no previous file with comments | « chrome/common/extensions/docs/match_patterns.html ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <div id="pageData-name" class="pageData">Match Patterns</div> 1 <div id="pageData-name" class="pageData">Match Patterns</div>
2 2
3 <p> 3 <p>
4 <a href="content_scripts.html">Content scripts</a> operate on 4 <a href="content_scripts.html">Content scripts</a> operate on
5 a set of URLs defined by match patterns. 5 a set of URLs defined by match patterns.
6 You can put one or more match patterns 6 You can put one or more match patterns
7 in the <code>"matches"</code> part of 7 in the <code>"matches"</code> part of
8 a content script's section of the manifest. 8 a content script's section of the manifest.
9 This page describes the match pattern syntax &mdash; 9 This page describes the match pattern syntax &mdash;
10 the rules you need to follow when you specify 10 the rules you need to follow when you specify
11 which URLs your content script affects. 11 which URLs your content script affects.
12 </p> 12 </p>
13 13
14 <p> 14 <p>
15 A match pattern is essentially a URL 15 A match pattern is essentially a URL
16 that begins with <code>http</code>, <code>https</code>, 16 that begins with a permitted scheme (<code>http</code>,
17 <code>file</code>, or <code>ftp</code>, 17 <code>https</code>, <code>file</code>, or <code>ftp</code>),
18 and that can contain '<code>*</code>' characters. 18 and that can contain '<code>*</code>' characters.
19 The special pattern
20 <code>&lt;all_urls&gt;</code> matches any URL
21 that starts with a permitted scheme.
19 Each match pattern has 3 parts:</p> 22 Each match pattern has 3 parts:</p>
20 </p> 23 </p>
21 24
22 <ul> 25 <ul>
23 <li> <em>scheme</em> &mdash; 26 <li> <em>scheme</em> &mdash;
24 for example, <code>http</code> or <code>file</code> 27 for example, <code>http</code> or <code>file</code>
28 or <code>*</code>
25 </li> 29 </li>
26 <li> <em>host</em> &mdash; 30 <li> <em>host</em> &mdash;
27 for example, <code>www.google.com</code> 31 for example, <code>www.google.com</code>
28 or <code>*.google.com</code> 32 or <code>*.google.com</code>
29 or <code>*</code>; 33 or <code>*</code>;
30 if the scheme is <code>file</code>, 34 if the scheme is <code>file</code>,
31 there is no <em>host</em> part 35 there is no <em>host</em> part
32 </li> 36 </li>
33 <li> <em>path</em> &mdash; 37 <li> <em>path</em> &mdash;
34 for example, <code>/*</code>, <code>/foo* </code>, 38 for example, <code>/*</code>, <code>/foo* </code>,
35 or <code>/foo/bar </code> 39 or <code>/foo/bar </code>
36 </li> 40 </li>
37 </ul> 41 </ul>
38 42
39 <p>Here's the basic syntax:</p> 43 <p>Here's the basic syntax:</p>
40 44
41 <pre><em>&lt;url-pattern&gt;</em> := <em>&lt;scheme&gt;</em>://<em>&lt;host&gt;< /em><em>&lt;path&gt;</em><br><em>&lt;scheme&gt;</em> := 'http' | 'https' | 'file ' | 'ftp'<br><em>&lt;host&gt;</em> := '*' | '*.' <em>&lt;any char except '/' and '*'&gt;</em>+<br><em>&lt;path&gt;</em> := '/' <em>&lt;any chars&gt;</em></pre> 45 <pre>
46 <em>&lt;url-pattern&gt;</em> := <em>&lt;scheme&gt;</em>://<em>&lt;host&gt;</em>< em>&lt;path&gt;</em>
47 <em>&lt;scheme&gt;</em> := '*' | 'http' | 'https' | 'file' | 'ftp'
48 <em>&lt;host&gt;</em> := '*' | '*.' <em>&lt;any char except '/' and '*'&gt;</em> +
49 <em>&lt;path&gt;</em> := '/' <em>&lt;any chars&gt;</em>
50 </pre>
42 51
43 <p> 52 <p>
44 The meaning of '<code>*</code>' depends on whether 53 The meaning of '<code>*</code>' depends on whether
45 it's in the <em>host</em> or the <em>path</em> part. 54 it's in the <em>scheme</em>, <em>host</em>, or <em>path</em> part.
55 If the <em>scheme</em> is <code>*</code>,
56 then it matches either <code>http</code> or <code>https</code>.
46 If the <em>host</em> is just <code>*</code>, 57 If the <em>host</em> is just <code>*</code>,
47 then it matches any host. 58 then it matches any host.
48 If the <em>host</em> is <code>*.<em>hostname</em></code>, 59 If the <em>host</em> is <code>*.<em>hostname</em></code>,
49 then it matches the specified host or any of its subdomains. 60 then it matches the specified host or any of its subdomains.
50 In the <em>path</em> section, 61 In the <em>path</em> section,
51 each '<code>*</code>' matches 0 or more characters. 62 each '<code>*</code>' matches 0 or more characters.
52 The following table shows some valid patterns. 63 The following table shows some valid patterns.
53 </p> 64 </p>
54 65
55 <table class="columns"> 66 <table class="columns">
(...skipping 84 matching lines...)
140 151
141 <td> 152 <td>
142 Matches any URL that uses the <code>http</code> scheme 153 Matches any URL that uses the <code>http</code> scheme
143 and is on the host 127.0.0.1 154 and is on the host 127.0.0.1
144 </td> 155 </td>
145 <td> 156 <td>
146 http://127.0.0.1/<br> 157 http://127.0.0.1/<br>
147 http://127.0.0.1/foo/bar.html 158 http://127.0.0.1/foo/bar.html
148 </td> 159 </td>
149 </tr> 160 </tr>
161
162 <tr>
163 <td>
164 <code>*://mail.google.com/* </code>
165 </td>
166
167 <td>
168 Matches any URL that starts with
169 <code>http://mail.google.com</code> or
170 <code>https://mail.google.com</code>.
171 </td>
172
173 <td>
174 http://mail.google.com/foo/baz/bar<br>
175 https://mail.google.com/foobar
176 </td>
177 </tr>
178
179 <tr>
180 <td>
181 <code>&lt;all_urls&gt;</code>
182 </td>
183
184 <td>
185 Matches any URL that uses a permitted scheme.
186 (See the beginning of this section for the list of permitted
187 schemes.)
188 </td>
189 <td>
190 http://example.org/foo/bar.html<br>
191 file:///bar/baz.html
192 </td>
193 </tr>
150 </tbody> 194 </tbody>
151 </table> 195 </table>
152 196
153 <p> 197 <p>
154 Here are some examples of <em>invalid</em> pattern matches: 198 Here are some examples of <em>invalid</em> pattern matches:
155 </p> 199 </p>
156 200
157 <table class="columns"> 201 <table class="columns">
158 <tbody> 202 <tbody>
159 <tr> 203 <tr>
(...skipping 21 matching lines...)
181 <td>Missing <em>scheme</em> separator ("/" should be "//")</td> 225 <td>Missing <em>scheme</em> separator ("/" should be "//")</td>
182 </tr> 226 </tr>
183 227
184 <tr> 228 <tr>
185 <td><code>foo://*</code></td> 229 <td><code>foo://*</code></td>
186 <td>Invalid <em>scheme</em></td> 230 <td>Invalid <em>scheme</em></td>
187 </tr> 231 </tr>
188 </tbody> 232 </tbody>
189 </table> 233 </table>
190 234
OLDNEW
« no previous file with comments | « chrome/common/extensions/docs/match_patterns.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine