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

Side by Side Diff: chrome/common/extensions/docs/server2/templates/intros/experimental_infobars.html

Issue 10832042: Extensions Docs Server: Doc conversion script (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: script/build.py fixes Created 8 years, 4 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 | Annotate | Revision Log
OLDNEW
1 <!-- BEGIN AUTHORED CONTENT -->
2 <p> 1 <p>
3 The infobars API allows you to add a 2 The infobars API allows you to add a
4 horizontal panel just above a tab's contents, 3 horizontal panel just above a tab's contents,
5 as the following screenshot shows. 4 as the following screenshot shows.
6 </p> 5 </p>
7 <p> 6 <p>
8 <img src="{{static}}/images/infobar.png" 7 <img src="{{static}}/images/infobar.png"
9 width="566" height="150" 8 width="566" height="150"
10 alt="An infobar asking whether the user wants to translate the current page" / > 9 alt="An infobar asking whether the user wants to translate the current page" / >
11 </p> 10 </p>
(...skipping 20 matching lines...) Expand all
32 <pre>{ 31 <pre>{
33 "name": "Andy's infobar extension", 32 "name": "Andy's infobar extension",
34 "version": "1.0", 33 "version": "1.0",
35 <b>"permissions": ["experimental"],</b> 34 <b>"permissions": ["experimental"],</b>
36 <b>"icons": {</b> 35 <b>"icons": {</b>
37 <b>"16": "16.png"</b> 36 <b>"16": "16.png"</b>
38 <b>},</b> 37 <b>},</b>
39 "background": { 38 "background": {
40 "scripts": ["background.js"] 39 "scripts": ["background.js"]
41 } 40 }
42 }</pre> 41 }</pre>
43 <!-- END AUTHORED CONTENT -->
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698