Index: chrome/common/extensions/docs/templates/intros/infobars.html |
diff --git a/chrome/common/extensions/docs/templates/intros/infobars.html b/chrome/common/extensions/docs/templates/intros/infobars.html |
deleted file mode 100644 |
index 963b5b911e51863e4fdf502f111e4ed0db574610..0000000000000000000000000000000000000000 |
--- a/chrome/common/extensions/docs/templates/intros/infobars.html |
+++ /dev/null |
@@ -1,49 +0,0 @@ |
-<p> |
not at google - send to devlin
2015/02/13 17:27:32
Delete this file, but add a new one to articles/in
Devlin
2015/02/13 21:18:33
Done.
|
-The infobars API allows you to add a |
-horizontal panel just above a tab's contents, |
-as the following screenshot shows. |
-</p> |
- |
-<p> |
-<img src="{{static}}/images/infobar.png" |
- width="722" height="150" |
- alt="An infobar asking whether the user wants to translate the current page" /> |
-</p> |
- |
-<p> |
-Use an infobar to tell the reader |
-something about a particular page. |
-When the user leaves the page for which the infobar is displayed, |
-Google Chrome automatically closes the infobar. |
-</p> |
- |
-<p> |
-You implement the content of your |
-infobar using HTML. Because infobars are ordinary pages inside an extension, |
-they can |
-<a href="overview#pageComm">communicate with other extension pages</a>. |
-</p> |
- |
- |
-<h2 id="manifest">Manifest</h2> |
- |
-<p> |
-The infobars API is avaiable under "infobars" |
-permission and dev channel only. Also, you should specify |
-a 16x16-pixel icon for display next to your infobar. |
-For example: |
-</p> |
- |
-<pre data-filename="manifest.json"> |
-{ |
- "name": "Andy's infobar extension", |
- "version": "1.0", |
- <b>"permissions": ["infobars"],</b> |
- <b>"icons": {</b> |
- <b>"16": "16.png"</b> |
- <b>},</b> |
- "background": { |
- "scripts": ["background.js"] |
- } |
-} |
-</pre> |