OLD | NEW |
1 <div id="pageData-title" 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 — | 9 This page describes the match pattern syntax — |
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. |
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
181 <td>Missing <em>scheme</em> separator ("/" should be "//")</td> | 181 <td>Missing <em>scheme</em> separator ("/" should be "//")</td> |
182 </tr> | 182 </tr> |
183 | 183 |
184 <tr> | 184 <tr> |
185 <td><code>foo://*</code></td> | 185 <td><code>foo://*</code></td> |
186 <td>Invalid <em>scheme</em></td> | 186 <td>Invalid <em>scheme</em></td> |
187 </tr> | 187 </tr> |
188 </tbody> | 188 </tbody> |
189 </table> | 189 </table> |
190 | 190 |
OLD | NEW |