--- title: browserAction.disable() slug: Mozilla/Add-ons/WebExtensions/API/browserAction/disable translation_of: Mozilla/Add-ons/WebExtensions/API/browserAction/disable ---
{{AddonSidebar()}}

タブに対してブラウザアクションを無効にします。つまり、タブがアクティブな時クリックされなくなります。

書式

browser.browserAction.disable(
  tabId // optional integer
)

パラメータ

tabId{{optional_inline}}
integer. ブラウザアクションを無効にしたいタブのIDです。

ブラウザ互換性

{{Compat("webextensions.api.browserAction.disable")}}

クリックされたときブラウザアクションを無効にし、新しいタブが開かれる毎回再度有効にします:

browser.tabs.onCreated.addListener(() => {
  browser.browserAction.enable();
});

browser.browserAction.onClicked.addListener(() => {
  browser.browserAction.disable();
});

アクティブなタブにだけブラウザアクションを無効にします:

browser.browserAction.onClicked.addListener((tab) => {
  browser.browserAction.disable(tab.id);
});

{{WebExtExamples}}

Acknowledgements

This API is based on Chromium's chrome.browserAction API. This documentation is derived from browser_action.json in the Chromium code.

Microsoft Edge compatibility data is supplied by Microsoft Corporation and is included here under the Creative Commons Attribution 3.0 United States License.