| Index: chrome/common/extensions/docs/templates/intros/browserAction.html
|
| diff --git a/chrome/common/extensions/docs/templates/intros/browserAction.html b/chrome/common/extensions/docs/templates/intros/browserAction.html
|
| index 8b4db61485a159cafe2e316f106b10cf2653f474..088022854362d2ee5d0c91410b9ab8e1fea04d2f 100644
|
| --- a/chrome/common/extensions/docs/templates/intros/browserAction.html
|
| +++ b/chrome/common/extensions/docs/templates/intros/browserAction.html
|
| @@ -11,7 +11,7 @@ A popup is below the icon.
|
|
|
| <p>
|
| If you want to create an icon that isn't always visible,
|
| -use a <a href="pageAction.html">page action</a>
|
| +use a <a href="pageAction">page action</a>
|
| instead of a browser action.
|
| </p>
|
|
|
| @@ -19,7 +19,7 @@ instead of a browser action.
|
|
|
| <p>
|
| Register your browser action in the
|
| -<a href="manifest.html">extension manifest</a>
|
| +<a href="manifest">extension manifest</a>
|
| like this:
|
| </p>
|
|
|
| @@ -33,7 +33,7 @@ like this:
|
| "38": "images/icon38.png" <em>// optional</em>
|
| },
|
| "default_title": "Google Mail", <em>// optional; shown in tooltip</em>
|
| - "default_popup": "popup.html" <em>// optional</em>
|
| + "default_popup": "popup" <em>// optional</em>
|
| }</b>,
|
| ...
|
| }
|
| @@ -76,7 +76,7 @@ and a <a href="#popups">popup</a>.
|
|
|
| <p>You can set the icon in two ways:
|
| using a static image or using the
|
| - HTML5 <a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/the-canvas-element.html">canvas element</a>.
|
| + HTML5 <a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/the-canvas-element">canvas element</a>.
|
| Using static images is easier for simple applications,
|
| but you can create more dynamic UIs —
|
| such as smooth animation —
|
| @@ -110,7 +110,7 @@ use the <b>default_title</b> field of <b>browser_action</b>
|
| in the <a href="#manifest">manifest</a>,
|
| or call the $(ref:browserAction.setTitle) method.
|
| You can specify locale-specific strings for the <b>default_title</b> field;
|
| -see <a href="i18n.html">Internationalization</a> for details.
|
| +see <a href="i18n">Internationalization</a> for details.
|
| </p>
|
|
|
| <h3 id="badge">Badge</h3>
|
| @@ -160,7 +160,7 @@ $(ref:browserAction.setPopup) method.
|
| that make sense on most pages.
|
| <li><b>Don't</b> use browser actions for features
|
| that make sense for only a few pages.
|
| - Use <a href="pageAction.html">page actions</a> instead.
|
| + Use <a href="pageAction">page actions</a> instead.
|
| <li><b>Do</b> use big, colorful icons that make the most of
|
| the 19x19-pixel space.
|
| Browser action icons should seem a little bigger
|
| @@ -185,5 +185,5 @@ You can find simple examples of using browser actions in the
|
| <a href="http://src.chromium.org/viewvc/chrome/trunk/src/chrome/common/extensions/docs/examples/api/browserAction/">examples/api/browserAction</a>
|
| directory.
|
| For other examples and for help in viewing the source code, see
|
| -<a href="samples.html">Samples</a>.
|
| +<a href="samples">Samples</a>.
|
| </p>
|
|
|