| Index: chrome/common/extensions/docs/templates/articles/manifest/action_handlers.html
|
| diff --git a/chrome/common/extensions/docs/templates/articles/manifest/action_handlers.html b/chrome/common/extensions/docs/templates/articles/manifest/action_handlers.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..1883be47d5cfa1c4c41a474471487e04f1ab3490
|
| --- /dev/null
|
| +++ b/chrome/common/extensions/docs/templates/articles/manifest/action_handlers.html
|
| @@ -0,0 +1,22 @@
|
| +<h1>Manifest - Action Handlers</h1>
|
| +
|
| +<p>
|
| +The <code>action_handlers</code> manifest property declares which user actions
|
| +or intents the application supports; these can serve as alternate launch points
|
| +for your application. This API is only available on ChromeOS.
|
| +</p>
|
| +
|
| +<p>
|
| +This list contains one or more of the <code>ActionType</code> values specified
|
| +in the <code>ActionType</code> entry of
|
| +<a href="../app_runtime#event-onLaunched">app.runtime.onLaunched</a>.
|
| +</p>
|
| +
|
| +<h2 id="manifest">Sample manifest.json</h2>
|
| +<pre data-filename="manifest.json">
|
| +{
|
| + "name": "My note {{platform}}",
|
| + "action_handlers": ["new_note"],
|
| + ...
|
| +}
|
| +</pre>
|
|
|