blob: 26af21fee830d886b7e224d7bceecf687997371e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
<div id="pageData-name" class="pageData">Context Menus</div>
<!-- BEGIN AUTHORED CONTENT -->
<p>
The context menus module allows you
to add items to Google Chrome's context menu.
</p>
<p>
You can choose what types of objects
your context menu additions apply to,
such as images, hyperlinks, and pages.
</P>
<p>
You can create as many context menu items
as you need, but if more than one
from your extension is visible at once,
Google Chrome automatically collapses them
into a single parent menu.
</p>
<h2 id="manifest">Manifest</h2>
<p>You must declare the "contextMenus" permission
in your extension's manifest to use the API.
Also, you should specify a 16x16-pixel icon
for display next to your menu item.
For example:
</p>
<pre>{
"name": "My extension",
...
"permissions": [
<b>"contextMenus"</b>
],
"icons": {
<b>"16": "icon-bitty.png",</b>
"48": "icon-small.png",
"128": "icon-large.png"
},
...
}</pre>
<h2 id="examples">Examples</h2>
<p>
You can find samples of this API on the
<a href="samples.html#contextMenus">sample page</a>.
<!-- END AUTHORED CONTENT -->
|