Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(145)

Side by Side Diff: chrome/common/extensions/docs/templates/articles/experimental.html

Issue 219213007: Remove .html extension from links (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 <h1 class="page_title">chrome.experimental.* APIs</h1> 1 <h1 class="page_title">chrome.experimental.* APIs</h1>
2 2
3 <h2 id="overview"> 3 <h2 id="overview">
4 List of APIs 4 List of APIs
5 </h2> 5 </h2>
6 6
7 {{^is_apps}} 7 {{^is_apps}}
8 <p class="doc-family extensions"> 8 <p class="doc-family extensions">
9 We'd like your <a href="http://groups.google.com/a/chromium.org/group/chromium-e xtensions/topics">feedback</a> 9 We'd like your <a href="http://groups.google.com/a/chromium.org/group/chromium-e xtensions/topics">feedback</a>
10 on the following experimental APIs: 10 on the following experimental APIs:
11 </p> 11 </p>
12 {{/is_apps}} 12 {{/is_apps}}
13 13
14 {{+partials.api_table apis:apis is_stable:false/}} 14 {{+partials.api_table apis:apis is_stable:false/}}
15 15
16 {{^is_apps}} 16 {{^is_apps}}
17 <p class="doc-family extensions"> 17 <p class="doc-family extensions">
18 Pay special attention to the following APIs, 18 Pay special attention to the following APIs,
19 which we expect to finalize soon: 19 which we expect to finalize soon:
20 <b>devtools</b>, 20 <b>devtools</b>,
21 <b>permissions</b>, 21 <b>permissions</b>,
22 For examples of using the experimental APIs, see 22 For examples of using the experimental APIs, see
23 <a href="samples.html#experimental">Samples</a>. 23 <a href="samples#experimental">Samples</a>.
24 </p> 24 </p>
25 {{/is_apps}} 25 {{/is_apps}}
26 26
27 <p class="warning"> 27 <p class="warning">
28 <b>Caution:</b> 28 <b>Caution:</b>
29 Don't depend on these experimental APIs. 29 Don't depend on these experimental APIs.
30 They might disappear, 30 They might disappear,
31 and they <em>will</em> change. 31 and they <em>will</em> change.
32 Also, the Chrome Web Store doesn't allow you to 32 Also, the Chrome Web Store doesn't allow you to
33 upload items that use experimental APIs. 33 upload items that use experimental APIs.
34 </p> 34 </p>
35 35
36 36
37 <h2 id="using">How to use experimental APIs</h2> 37 <h2 id="using">How to use experimental APIs</h2>
38 38
39 <ol> 39 <ol>
40 {{^is_apps}} 40 {{^is_apps}}
41 <li class="doc-family extensions"> 41 <li class="doc-family extensions">
42 Make sure you're using either 42 Make sure you're using either
43 <a href="http://tools.google.com/dlpage/chromesxs">Canary</a> 43 <a href="http://tools.google.com/dlpage/chromesxs">Canary</a>
44 (which you can use at the same time as other Chrome channels) or the 44 (which you can use at the same time as other Chrome channels) or the
45 <a href="http://www.chromium.org/getting-involved/dev-channel">Dev channel</a>. 45 <a href="http://www.chromium.org/getting-involved/dev-channel">Dev channel</a>.
46 Although the experimental APIs might work in other versions, 46 Although the experimental APIs might work in other versions,
47 we need your feedback on the latest incarnation of the APIs, 47 we need your feedback on the latest incarnation of the APIs,
48 which you can find in Canary and on the Dev channel. 48 which you can find in Canary and on the Dev channel.
49 </li> 49 </li>
50 {{/is_apps}} 50 {{/is_apps}}
51 <li> 51 <li>
52 Specify the "experimental" 52 Specify the "experimental"
53 <a href="declare_permissions.html">permission</a> 53 <a href="declare_permissions">permission</a>
54 in your manifest, like this: 54 in your manifest, like this:
55 <pre data-filename="manifest.json"> 55 <pre data-filename="manifest.json">
56 "permissions": [ 56 "permissions": [
57 <b>"experimental"</b>, 57 <b>"experimental"</b>,
58 ... 58 ...
59 ], 59 ],
60 </pre> 60 </pre>
61 </li> 61 </li>
62 <li> 62 <li>
63 Enable the experimental API in your browser. 63 Enable the experimental API in your browser.
(...skipping 26 matching lines...) Expand all
90 improve the APIs and decide 90 improve the APIs and decide
91 which ones should move from experimental to supported. 91 which ones should move from experimental to supported.
92 </li> 92 </li>
93 {{/is_apps}} 93 {{/is_apps}}
94 </ol> 94 </ol>
95 95
96 <h2 id="other">More APIs</h2> 96 <h2 id="other">More APIs</h2>
97 97
98 <p> 98 <p>
99 For information on the standard APIs, see 99 For information on the standard APIs, see
100 <a href="api_index.html">chrome.* APIs</a> and 100 <a href="api_index">chrome.* APIs</a> and
101 <a href="api_other.html">Other APIs</a>. 101 <a href="api_other">Other APIs</a>.
102 </p> 102 </p>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698