Articles tagged: API
Found 5012 documents
- Mozilla/Add-ons/WebExtensions/API/pkcs11/uninstallModule Uninstalls the named PKCS #11 module from Firefox.
- Mozilla/Add-ons/WebExtensions/API/privacy Access and modify various privacy-related browser settings.
- Mozilla/Add-ons/WebExtensions/API/privacy/network
- Mozilla/Add-ons/WebExtensions/API/privacy/services
- Mozilla/Add-ons/WebExtensions/API/privacy/websites
- Mozilla/Add-ons/WebExtensions/API/proxy Use the proxy API to register an extended Proxy Auto-Configuration (PAC) file, which implements ...
- Mozilla/Add-ons/WebExtensions/API/proxy/onProxyError Fired when there is an error evaluating the PAC file.
- Mozilla/Add-ons/WebExtensions/API/proxy/register Registers a Proxy Auto-Configuration (PAC) file. The file is executed immediately, and its ...
- Mozilla/Add-ons/WebExtensions/API/proxy/unregister Unregisters a Proxy Auto-Configuration (PAC) file. that was registered by an earlier call to ...
- Mozilla/Add-ons/WebExtensions/API/runtime This module provides information about your extension and the environment it's running in.
- Mozilla/Add-ons/WebExtensions/API/runtime/connect Make a connection between different contexts inside the extension.
- Mozilla/Add-ons/WebExtensions/API/runtime/connectNative For more information, see Native messaging.
- Mozilla/Add-ons/WebExtensions/API/runtime/getBackgroundPage Retrieves the Window object for the background page running inside the current extension.
- Mozilla/Add-ons/WebExtensions/API/runtime/getManifest None.
- Mozilla/Add-ons/WebExtensions/API/runtime/getPackageDirectoryEntry Returns a DirectoryEntry object representing the package directory.
- Mozilla/Add-ons/WebExtensions/API/runtime/getPlatformInfo Returns information about the current platform.
- Mozilla/Add-ons/WebExtensions/API/runtime/getURL string. The fully-qualified URL to the resource.
- Mozilla/Add-ons/WebExtensions/API/runtime/id The ID of the extension.
- Mozilla/Add-ons/WebExtensions/API/runtime/lastError The runtime.lastError property is set when an asynchronous function has an error condition that ...
- Mozilla/Add-ons/WebExtensions/API/runtime/MessageSender An object containing information about the sender of a message or connection request; this is ...
- Mozilla/Add-ons/WebExtensions/API/runtime/onBrowserUpdateAvailable Fired when an update for the browser is available, but it isn't installed immediately because a ...
- Mozilla/Add-ons/WebExtensions/API/runtime/onConnect Fired when a connection is made with either an extension process or a content script.
- Mozilla/Add-ons/WebExtensions/API/runtime/onConnectExternal Fired when an extension receives a connection request from a different extension.
- Mozilla/Add-ons/WebExtensions/API/runtime/onInstalled Fired when the extension is first installed, when the extension is updated to a new version, and ...
- Mozilla/Add-ons/WebExtensions/API/runtime/OnInstalledReason The reason that the runtime.onInstalled event is being dispatched.
- Mozilla/Add-ons/WebExtensions/API/runtime/onMessage To send a message which will be received by the onMessage listener, use runtime.sendMessage() or ...
- Mozilla/Add-ons/WebExtensions/API/runtime/onMessageExternal This API can't be used in a content script.
- Mozilla/Add-ons/WebExtensions/API/runtime/onRestartRequired Fired when an app or the device that it runs on needs to be restarted. The app should close all ...
- Mozilla/Add-ons/WebExtensions/API/runtime/OnRestartRequiredReason The reason that the onRestartRequired event is being dispatched.
- Mozilla/Add-ons/WebExtensions/API/runtime/onStartup Fired when a profile that has this extension installed first starts up. This event is not fired ...
- Mozilla/Add-ons/WebExtensions/API/runtime/onSuspend Sent to the event page just before it is unloaded. This gives the extension an opportunity to do ...
- Mozilla/Add-ons/WebExtensions/API/runtime/onSuspendCanceled Sent after runtime.onSuspend to indicate that the app won't be unloaded after all.
- Mozilla/Add-ons/WebExtensions/API/runtime/onUpdateAvailable Fired when an update to the extension is available. This event enables an extension to delay an ...
- Mozilla/Add-ons/WebExtensions/API/runtime/openOptionsPage This is an asynchronous function that returns a Promise.
- Mozilla/Add-ons/WebExtensions/API/runtime/PlatformArch The machine's processor architecture.
- Mozilla/Add-ons/WebExtensions/API/runtime/PlatformInfo An object containing information about the current platform.
- Mozilla/Add-ons/WebExtensions/API/runtime/PlatformNaclArch The native client architecture. This may be different from arch on some platforms.
- Mozilla/Add-ons/WebExtensions/API/runtime/PlatformOs The operating system the browser is running on.
- Mozilla/Add-ons/WebExtensions/API/runtime/Port A Port object represents one end of a connection between two specific contexts, which can be ...
- Mozilla/Add-ons/WebExtensions/API/runtime/reload Reloads the extension.
- Mozilla/Add-ons/WebExtensions/API/runtime/requestUpdateCheck Checks to see if an update for the extension is available.
- Mozilla/Add-ons/WebExtensions/API/runtime/RequestUpdateCheckStatus Result of a call to runtime.requestUpdateCheck().
- Mozilla/Add-ons/WebExtensions/API/runtime/sendMessage Sends a single message to event listeners within your extension or a different extension.
- Mozilla/Add-ons/WebExtensions/API/runtime/sendNativeMessage Sends a single message from an extension to a native application.
- Mozilla/Add-ons/WebExtensions/API/runtime/setUninstallURL Sets the URL to be visited when the extension is uninstalled. This may be used to clean up ...
- Mozilla/Add-ons/WebExtensions/API/sessions Use the sessions API to list, and restore, tabs and windows that have been closed while the ...
- Mozilla/Add-ons/WebExtensions/API/sessions/Filter The Filter object enables you to restrict the number of Session objects returned by a call to ...
- Mozilla/Add-ons/WebExtensions/API/sessions/forgetClosedTab This is an asynchronous function that returns a Promise.
- Mozilla/Add-ons/WebExtensions/API/sessions/forgetClosedWindow This is an asynchronous function that returns a Promise.
- Mozilla/Add-ons/WebExtensions/API/sessions/getRecentlyClosed Returns an array of Session objects, representing windows and tabs that were closed in the ...
- Mozilla/Add-ons/WebExtensions/API/sessions/getTabValue Retrieves a value previously stored by a call to sessions.setTabValue.
- Mozilla/Add-ons/WebExtensions/API/sessions/getWindowValue Retrieves a value previously stored by a call to sessions.setWindowValue.
- Mozilla/Add-ons/WebExtensions/API/sessions/MAX_SESSION_RESULTS This value represents the maximum number of sessions that will be returned by a call to ...
- Mozilla/Add-ons/WebExtensions/API/sessions/onChanged Fired whenever the list of closed tabs or windows changes.
- Mozilla/Add-ons/WebExtensions/API/sessions/removeTabValue Removes a value previously stored by a call to sessions.setTabValue.
- Mozilla/Add-ons/WebExtensions/API/sessions/removeWindowValue Removes a value previously stored by a call to sessions.setWindowValue.
- Mozilla/Add-ons/WebExtensions/API/sessions/restore Restores a closed tab or window. Restoring doesn't just reopen the tab or window: it also ...
- Mozilla/Add-ons/WebExtensions/API/sessions/Session The Session object represents a tab or window that the user has closed in the current browsing ...
- Mozilla/Add-ons/WebExtensions/API/sessions/setTabValue Stores a key/value pair to associate with a given tab. You can subsequently retrieve this value ...
- Mozilla/Add-ons/WebExtensions/API/sessions/setWindowValue Stores a key/value pair to associate with a given window. You can subsequently retrieve this ...
- Mozilla/Add-ons/WebExtensions/API/sidebarAction/close Closes the sidebar in the active window, if it is the extension's own sidebar.
- Mozilla/Add-ons/WebExtensions/API/sidebarAction/getPanel Gets a URL to the HTML document that defines the sidebar's contents.
- Mozilla/Add-ons/WebExtensions/API/sidebarAction/getTitle Gets the sidebar's title.
- Mozilla/Add-ons/WebExtensions/API/sidebarAction/ImageDataType Pixel data for an image. Must be an ImageData object (for example, from a canvas element).
- Mozilla/Add-ons/WebExtensions/API/sidebarAction/open None.
- Mozilla/Add-ons/WebExtensions/API/sidebarAction/setIcon Sets the icon for the sidebar.
- Mozilla/Add-ons/WebExtensions/API/sidebarAction/setPanel Sets the HTML document that defines the content of this sidebar.
- Mozilla/Add-ons/WebExtensions/API/sidebarAction/setTitle Sets the sidebar's title. The title is displayed anywhere the browser lists available sidebars. ...
- Mozilla/Add-ons/WebExtensions/API/storage Enables extensions to store and retrieve data, and listen for changes to stored items.
- Mozilla/Add-ons/WebExtensions/API/storage/local Represents the local storage area. Items in local storage are local to the machine the extension ...
- Mozilla/Add-ons/WebExtensions/API/storage/managed A storage.StorageArea object that represents the managed storage area. Items in managed storage ...
- Mozilla/Add-ons/WebExtensions/API/storage/onChanged Fired when one or more items change.
- Mozilla/Add-ons/WebExtensions/API/storage/StorageArea StorageArea is an object representing a storage area.
- Mozilla/Add-ons/WebExtensions/API/storage/StorageArea/clear Removes all items from the storage area.
- Mozilla/Add-ons/WebExtensions/API/storage/StorageArea/get Retrieves one or more items from the storage area.
- Mozilla/Add-ons/WebExtensions/API/storage/StorageArea/getBytesInUse Gets the amount of storage space, in bytes, used one or more items being stored in the storage area.
- Mozilla/Add-ons/WebExtensions/API/storage/StorageArea/remove Removes one or more items from the storage area.
- Mozilla/Add-ons/WebExtensions/API/storage/StorageArea/set Stores one or more items in the storage area, or update existing items.
- Mozilla/Add-ons/WebExtensions/API/storage/StorageChange StorageChange objects contain the following properties:
- Mozilla/Add-ons/WebExtensions/API/storage/sync Represents the sync storage area. Items in sync storage are synced by the browser, and are ...
- Mozilla/Add-ons/WebExtensions/API/tabs Interact with the browser's tab system.
- Mozilla/Add-ons/WebExtensions/API/tabs/captureVisibleTab Creates a data URI encoding an image of the visible area of the currently active tab in the ...
- Mozilla/Add-ons/WebExtensions/API/tabs/connect Call this function to set up a connection between the extension's background scripts (or other ...
- Mozilla/Add-ons/WebExtensions/API/tabs/create Creates a new tab.
- Mozilla/Add-ons/WebExtensions/API/tabs/detectLanguage Detects the primary language of the content in a tab, using the Compact Language Detector (CLD).
- Mozilla/Add-ons/WebExtensions/API/tabs/discard Discards one or more tabs.
- Mozilla/Add-ons/WebExtensions/API/tabs/duplicate Duplicates a tab, given its ID.
- Mozilla/Add-ons/WebExtensions/API/tabs/executeScript Injects JavaScript code into a page.
- Mozilla/Add-ons/WebExtensions/API/tabs/get Given a tab ID, get the tab's details as a tabs.Tab object.
- Mozilla/Add-ons/WebExtensions/API/tabs/getAllInWindow Gets details about all tabs in the specified window.
- Mozilla/Add-ons/WebExtensions/API/tabs/getCurrent Get a tabs.Tab containing information about the tab that this script is running in.
- Mozilla/Add-ons/WebExtensions/API/tabs/getSelected Gets the tab that is selected in the specified window.
- Mozilla/Add-ons/WebExtensions/API/tabs/getZoom Gets the current zoom factor for the specified tab.
- Mozilla/Add-ons/WebExtensions/API/tabs/getZoomSettings Gets the current zoom settings for a specified tab.
- Mozilla/Add-ons/WebExtensions/API/tabs/highlight A Promise that will be fulfilled with a windows.Window object containing details about the ...
- Mozilla/Add-ons/WebExtensions/API/tabs/insertCSS Injects CSS into a page.
- Mozilla/Add-ons/WebExtensions/API/tabs/move Moves one or more tabs to a new position in the same window or to a different window.
- Mozilla/Add-ons/WebExtensions/API/tabs/MutedInfo This object contains a boolean indicating whether the tab is muted, and the reason for the last ...
- Mozilla/Add-ons/WebExtensions/API/tabs/MutedInfoReason Specifies the reason a tab was muted or unmuted.
- Mozilla/Add-ons/WebExtensions/API/tabs/onActivated Fires when the active tab in a window changes. Note that the tab's URL may not be set at the ...