sidebar_action
型 | Object |
---|---|
必須 | いいえ |
例 |
json
|
サイドバーはブラウザーウィンドウの左側の、ウェブページの横に表示されるペインです。ブラウザーはユーザーに現在利用できるサイドバーを表示して表示するサイドバーを選ぶ UI を提供します。
sidebar_action キーによりサイドバーの既定のプロパティを定義できます。このプロパティは sidebarAction
API.を使って変更できます。
構文
sidebar_action
キーは下記に載っているプロパティを持つことのあるオブジェクトです。唯一の必須プロパティは default_panel
です。
名前 | 型 | 説明 |
---|---|---|
browser_style |
Boolean |
オプション、デフォルトでは
Use this to include a stylesheet in your popup that will make it look
consistent with the browser's UI and with other extensions that use
the |
default_icon |
Object or String |
これはサイドバーのアイコンを指定するのに使います。このアイコンはブラウザーのUI内でサイドバーを開いたり閉じたりするのに表示されます。 Icons are specified as URLs relative to the manifest.json file itself. You can specify a single icon file by supplying a string here: json
To specify multiple icons in different sizes, specify an object here. The name of each property is the icon's height in pixels, and must be convertible to an integer. The value is the URL. For example: json
See Choosing icon sizes for more guidance on this. This property is optional: if it is omitted, the sidebar doesn't get an icon. |
default_panel |
String |
サイドバーのコンテンツを指定する HTML ファイルのパス。
HTML ファイルには、普通のウェブページと同様に CSS と JavaScript
ファイルを
普通のウェブページと異なり、パネル内で実行される JavaScript はすべての WebExtension APIs にアクセスできます(もちろん、拡張機能が持っている権限に従います)。 このプロパティは必須です。 |
default_title |
String |
サイドバーのタイトル。これはブラウザーのUIの中でサイドバーを一覧したり開くのに使われ、サイドバーが開いた時には上に表示されます。
This property is optional: if it is omitted, the sidebar's title is
the extension's
This is a localizable property. |
例
"sidebar_action": {
"default_icon": "sidebar.svg",
"default_title": "My sidebar!",
"default_panel": "sidebar.html",
"browser_style": true
}
For a simple example of an extension that uses a sidebar, see annotate-page.
ブラウザーの互換性
BCD tables only load in the browser