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

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

Issue 2618493002: Chrome app manifest support for action handlers. (Closed)
Patch Set: Rebase Created 3 years, 11 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
(Empty)
1 <h1>Manifest - Action Handlers</h1>
2
3 <p>
4 The <code>action_handlers</code> manifest property declares which user actions
5 or intents that the application supports. An action is essentially an
Daniel Erat 2017/01/12 23:55:03 nit: either "declares user actions or intents that
jdufault 2017/01/14 00:30:42 Done.
6 alternative launch point.
7 </p>
8
9 <p>
10 This list contains any of the <code>ActionType</code> values; see the
11 <code>actionData</code> entry inside of
12 <a href="../app_runtime#event-onLaunched">app.runtime.onLaunched</a>.
13 </p>
14
15 <h2 id="manifest">Sample manifest.json</h2>
16 <pre data-filename="manifest.json">
17 {
18 "name": "My note {{platform}}",
19 "action_handlers": ["new_note"],
20 ...
21 }
22 </pre>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698