OLD | NEW |
1 <div id="pageData-name" class="pageData">Match Patterns</div> | 1 <h1>Match Patterns</h1> |
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 as well as in the <code>"exclude_matches"</code> section. | 9 as well as in the <code>"exclude_matches"</code> section. |
10 This page describes the match pattern syntax — | 10 This page describes the match pattern syntax — |
11 the rules you need to follow when you specify | 11 the rules you need to follow when you specify |
(...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
251 | 251 |
252 <tr> | 252 <tr> |
253 <td><code>foo://*</code></td> | 253 <td><code>foo://*</code></td> |
254 <td>Invalid <em>scheme</em></td> | 254 <td>Invalid <em>scheme</em></td> |
255 </tr> | 255 </tr> |
256 </tbody> | 256 </tbody> |
257 </table> | 257 </table> |
258 | 258 |
259 <p> | 259 <p> |
260 Some schemes are not supported in all contexts. | 260 Some schemes are not supported in all contexts. |
261 </p> | 261 </p> |
OLD | NEW |