OLD | NEW |
1 <p id="classSummary"> | |
2 Use the <code>chrome.browsingData</code> module to remove browsing data from a | |
3 user's local profile. | |
4 </p> | |
5 | |
6 <h2 id="manifest">Manifest</h2> | 1 <h2 id="manifest">Manifest</h2> |
7 | 2 |
8 <p> | 3 <p> |
9 You must declare the "browsingData" permission in the | 4 You must declare the "browsingData" permission in the |
10 <a href="manifest.html">extension manifest</a> to use this API. | 5 <a href="manifest.html">extension manifest</a> to use this API. |
11 </p> | 6 </p> |
12 | 7 |
13 <pre>{ | 8 <pre>{ |
14 "name": "My extension", | 9 "name": "My extension", |
15 ... | 10 ... |
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
149 <code>extension</code>. These are destructive operations that your users | 144 <code>extension</code>. These are destructive operations that your users |
150 will write angry email about if they're not well-informed about what to | 145 will write angry email about if they're not well-informed about what to |
151 expect when your extension removes data on their behalf. | 146 expect when your extension removes data on their behalf. |
152 </p> | 147 </p> |
153 | 148 |
154 <h2 id="samples">Examples</h2> | 149 <h2 id="samples">Examples</h2> |
155 <p> | 150 <p> |
156 Samples for the <code>browsingData</code> API are available | 151 Samples for the <code>browsingData</code> API are available |
157 <a href="samples.html#browsingData">on the samples page</a>. | 152 <a href="samples.html#browsingData">on the samples page</a>. |
158 </p> | 153 </p> |
OLD | NEW |