Articles tagged: API
Found 5012 documents
- Mozilla/Add-ons/WebExtensions/API/browsingData/removeCache Clears the browser's cache.
- Mozilla/Add-ons/WebExtensions/API/browsingData/removeCookies Clears the browser's cookies.
- Mozilla/Add-ons/WebExtensions/API/browsingData/removeDownloads Clears the browser's download history. Note that this does not delete the downloaded objects ...
- Mozilla/Add-ons/WebExtensions/API/browsingData/removeFormData Clears data that the browser has saved for autofilling forms.
- Mozilla/Add-ons/WebExtensions/API/browsingData/removeHistory Clears the record of web pages that the user has visited (browsing history).
- Mozilla/Add-ons/WebExtensions/API/browsingData/removeLocalStorage Clears any local storage created by websites.
- Mozilla/Add-ons/WebExtensions/API/browsingData/removePasswords Clears saved passwords.
- Mozilla/Add-ons/WebExtensions/API/browsingData/removePluginData Clears data stored by browser plugins.
- Mozilla/Add-ons/WebExtensions/API/browsingData/settings Browsers have a built-in "Clear History" feature, which enables the user to clear various types ...
- Mozilla/Add-ons/WebExtensions/API/clipboard The clipboard API enables an extension to copy items to the system clipboard. Currently the API ...
- Mozilla/Add-ons/WebExtensions/API/clipboard/setImageData Copies an image to the clipboard. The image is re-encoded before it is written to the clipboard. ...
- Mozilla/Add-ons/WebExtensions/API/commands Listen for the user executing commands that you have registered using the commands manifest.json ...
- Mozilla/Add-ons/WebExtensions/API/commands/Command Information about a command. This contains the information specified for the command in the ...
- Mozilla/Add-ons/WebExtensions/API/commands/getAll Gets all commands for the extention that you have registered using the commands manifest.json key.
- Mozilla/Add-ons/WebExtensions/API/commands/onCommand Events have three functions:
- Mozilla/Add-ons/WebExtensions/API/contextualIdentities/ContextualIdentity The contextualIdentities.ContextualIdentity type describes a single contextual identity.
- Mozilla/Add-ons/WebExtensions/API/contextualIdentities/create Creates a new contextual identity. Once created, the user will be able to create new tabs ...
- Mozilla/Add-ons/WebExtensions/API/contextualIdentities/get Gets information about a contextual identity, given its cookie store ID.
- Mozilla/Add-ons/WebExtensions/API/contextualIdentities/onCreated Fired when a new contextual identity is created. Contextual identities may be created by ...
- Mozilla/Add-ons/WebExtensions/API/contextualIdentities/onRemoved Fired when a new contextual identity is removed. Contextual identities may be removed by ...
- Mozilla/Add-ons/WebExtensions/API/contextualIdentities/onUpdated Fired when the properties of a contextual identity, such as its name, icon, or color, are ...
- Mozilla/Add-ons/WebExtensions/API/contextualIdentities/query Gets information about all contextual identities, or about those contextual identities that ...
- Mozilla/Add-ons/WebExtensions/API/contextualIdentities/remove Removes a contextual identity, given its cookie store ID.
- Mozilla/Add-ons/WebExtensions/API/contextualIdentities/update Updates properties of a contextual identity, given its cookie store ID.
- Mozilla/Add-ons/WebExtensions/API/cookies Enables extensions to get and set cookies, and be notified when they change.
- Mozilla/Add-ons/WebExtensions/API/cookies/Cookie The Cookie type of the cookies API represents information about an HTTP cookie.
- Mozilla/Add-ons/WebExtensions/API/cookies/CookieStore The CookieStore type of the cookies API represents a cookie store in the browser.
- Mozilla/Add-ons/WebExtensions/API/cookies/get The get() method of the cookies API retrieves information about a single cookie, given its name ...
- Mozilla/Add-ons/WebExtensions/API/cookies/getAll The getAll() method of the cookies API retrieves all cookies from a single cookie store that ...
- Mozilla/Add-ons/WebExtensions/API/cookies/getAllCookieStores The getAllCookieStores() method of the cookies API returns a list of all cookie stores.
- Mozilla/Add-ons/WebExtensions/API/cookies/onChanged The onChanged event of the cookies API is fired when a cookie is set or removed.
- Mozilla/Add-ons/WebExtensions/API/cookies/OnChangedCause The OnChangedCause type of the cookies API represents the reason a cookie changed.
- Mozilla/Add-ons/WebExtensions/API/cookies/remove The remove() method of the cookies API deletes a cookie, given its name and URL.
- Mozilla/Add-ons/WebExtensions/API/cookies/set The set() method of the cookies API sets a cookie containing the specified cookie data. This ...
- Mozilla/Add-ons/WebExtensions/API/devtools.inspectedWindow The devtools.inspectedWindow API lets a devtools extension interact with the window that the ...
- Mozilla/Add-ons/WebExtensions/API/devtools.inspectedWindow/eval Executes JavaScript in the window that the devtools are attached to.
- Mozilla/Add-ons/WebExtensions/API/devtools.inspectedWindow/reload Reloads the window that the devtools are attached to.
- Mozilla/Add-ons/WebExtensions/API/devtools.inspectedWindow/tabId The ID of the tab that this instance of the devtools is attached to, represented as a number.
- Mozilla/Add-ons/WebExtensions/API/devtools.network The devtools.network API lets a devtools extension get information about network requests ...
- Mozilla/Add-ons/WebExtensions/API/devtools.network/onNavigated Fired when the user navigates the inspected window to a new page.
- Mozilla/Add-ons/WebExtensions/API/devtools.panels The devtools.panels API lets a devtools extension define its user interface inside the devtools ...
- Mozilla/Add-ons/WebExtensions/API/devtools.panels/create Adds a new panel to the devtools.
- Mozilla/Add-ons/WebExtensions/API/devtools.panels/elements An ElementsPanel object, which represents the browser's HTML/CSS inspector.
- Mozilla/Add-ons/WebExtensions/API/devtools.panels/ElementsPanel An ElementsPanel represents the HTML/CSS inspector in the browser's devtools. This is called the ...
- Mozilla/Add-ons/WebExtensions/API/devtools.panels/ElementsPanel/createSidebarPane Adds a new pane to the sidebar in the HTML/CSS inspector.
- Mozilla/Add-ons/WebExtensions/API/devtools.panels/ElementsPanel/onSelectionChanged Fires when the user selects a different page element for inspection with the browser's developer ...
- Mozilla/Add-ons/WebExtensions/API/devtools.panels/ExtensionPanel An ExtensionPanel represents a panel added to the devtools. It's the resolution of the Promise ...
- Mozilla/Add-ons/WebExtensions/API/devtools.panels/ExtensionSidebarPane The ExtensionSidebarPane object represents a pane that an extension has added to the sidebar in ...
- Mozilla/Add-ons/WebExtensions/API/devtools.panels/ExtensionSidebarPane/onShown Fired when the sidebar pane becomes visible as a result of the user switching to it.
- Mozilla/Add-ons/WebExtensions/API/devtools.panels/ExtensionSidebarPane/setExpression Evaluates an expression in the context of the inspected page, and displays the result in the ...
- Mozilla/Add-ons/WebExtensions/API/devtools.panels/ExtensionSidebarPane/setObject Displays a JSON object in the extension's sidebar pane.
- Mozilla/Add-ons/WebExtensions/API/devtools.panels/onThemeChanged Fired when the devtools theme changes.
- Mozilla/Add-ons/WebExtensions/API/devtools.panels/themeName The name of the currently selected devtools theme.
- Mozilla/Add-ons/WebExtensions/API/downloads Enables extensions to interact with the browser's download manager. You can use this API module ...
- Mozilla/Add-ons/WebExtensions/API/downloads/acceptDanger The acceptDanger () function of the downloads API prompts the user to either accept or cancel a ...
- Mozilla/Add-ons/WebExtensions/API/downloads/BooleanDelta The BooleanDelta type of the downloads API represents the difference between two booleans.
- Mozilla/Add-ons/WebExtensions/API/downloads/cancel The cancel () function of the downloads API cancels a download. The call will fail if the ...
- Mozilla/Add-ons/WebExtensions/API/downloads/DangerType The DangerType type of the downloads API defines a set of possible reasons that a downloadable ...
- Mozilla/Add-ons/WebExtensions/API/downloads/DoubleDelta The DoubleDelta type of the downloads API represents the difference between two doubles.
- Mozilla/Add-ons/WebExtensions/API/downloads/download The download() function of the downloads API downloads a file, given its URL and other optional ...
- Mozilla/Add-ons/WebExtensions/API/downloads/DownloadItem The DownloadItem type of the downloads API represents a downloaded file.
- Mozilla/Add-ons/WebExtensions/API/downloads/DownloadQuery The DownloadQuery type of the downloads API defines a set of parameters that can be used to ...
- Mozilla/Add-ons/WebExtensions/API/downloads/DownloadTime The DownloadTime type of the downloads API represents the time a download took to complete.
- Mozilla/Add-ons/WebExtensions/API/downloads/drag The drag () function of the downloads API initiates dragging the downloaded file to another ...
- Mozilla/Add-ons/WebExtensions/API/downloads/erase The erase () function of the downloads API erases matching DownloadItems from the browser's ...
- Mozilla/Add-ons/WebExtensions/API/downloads/FilenameConflictAction The FilenameConflictAction type of the downloads API specifies what to do if the name of a ...
- Mozilla/Add-ons/WebExtensions/API/downloads/getFileIcon The getFileIcon () function of the downloads API retrieves an icon for the specified download.
- Mozilla/Add-ons/WebExtensions/API/downloads/InterruptReason The InteruptReason type of the downloads API defines a set of possible reasons why a download ...
- Mozilla/Add-ons/WebExtensions/API/downloads/onChanged The onChanged () event of the downloads API is fired when any of a downloads.DownloadItem 's ...
- Mozilla/Add-ons/WebExtensions/API/downloads/onCreated The onCreated () event of the downloads API fires when a download begins, i.e. when ...
- Mozilla/Add-ons/WebExtensions/API/downloads/onErased The onErased () event of the downloads API fires when a download is erased from the browser history.
- Mozilla/Add-ons/WebExtensions/API/downloads/open The open() function of the downloads API opens the downloaded file with its associated ...
- Mozilla/Add-ons/WebExtensions/API/downloads/pause The pause () function of the downloads API pauses a download.
- Mozilla/Add-ons/WebExtensions/API/downloads/removeFile The removeFile () function of the downloads API removes a downloaded file from disk.
- Mozilla/Add-ons/WebExtensions/API/downloads/resume The resume () function of the downloads API resumes a paused download. If the request was ...
- Mozilla/Add-ons/WebExtensions/API/downloads/search The search() function of the downloads API queries the DownloadItems available in the browser's ...
- Mozilla/Add-ons/WebExtensions/API/downloads/setShelfEnabled The setShelfEnabled () function of the downloads API enables or disables the gray shelf at the ...
- Mozilla/Add-ons/WebExtensions/API/downloads/show The show () function of the downloads API shows the downloaded file in its containing folder in ...
- Mozilla/Add-ons/WebExtensions/API/downloads/showDefaultFolder The showDefaultFolder () function of the downloads API opens the default downloads folder in the ...
- Mozilla/Add-ons/WebExtensions/API/downloads/State The State type of the downloads API defines different states that a current download can be in.
- Mozilla/Add-ons/WebExtensions/API/downloads/StringDelta The StringDelta type of the downloads API represents the difference between two strings.
- Mozilla/Add-ons/WebExtensions/API/events Common types used by APIs that dispatch events.
- Mozilla/Add-ons/WebExtensions/API/events/Event An object which allows the addition and removal of listeners for a browser event.
- Mozilla/Add-ons/WebExtensions/API/events/Rule Description of a declarative rule for handling events.
- Mozilla/Add-ons/WebExtensions/API/events/UrlFilter Describes various criteria for filtering URLs. If all of the criteria specified in the filter's ...
- Mozilla/Add-ons/WebExtensions/API/extension Utilities related to your extension. Get URLs to resources packages with your extension, get the ...
- Mozilla/Add-ons/WebExtensions/API/extension/getBackgroundPage Alias for runtime.getBackgroundPage().
- Mozilla/Add-ons/WebExtensions/API/extension/getExtensionTabs Returns an array of the JavaScript Window objects for each of the tabs running inside the ...
- Mozilla/Add-ons/WebExtensions/API/extension/getURL Converts a relative path within an extension's install directory to a fully-qualified URL.
- Mozilla/Add-ons/WebExtensions/API/extension/getViews Returns an array of the Window objects for each of the pages running inside the current ...
- Mozilla/Add-ons/WebExtensions/API/extension/inIncognitoContext Boolean value, true for content scripts running inside private browsing tabs and for extension ...
- Mozilla/Add-ons/WebExtensions/API/extension/isAllowedFileSchemeAccess None.
- Mozilla/Add-ons/WebExtensions/API/extension/isAllowedIncognitoAccess Check whether the extension is allowed access to tabs opened in "private browsing" mode.
- Mozilla/Add-ons/WebExtensions/API/extension/lastError An alias for runtime.lastError.
- Mozilla/Add-ons/WebExtensions/API/extension/onRequest Fired when a request is sent from either an extension process or a content script.
- Mozilla/Add-ons/WebExtensions/API/extension/onRequestExternal Fired when a request is sent from another extension.
- Mozilla/Add-ons/WebExtensions/API/extension/sendRequest Sends a single request to other listeners within the extension. Similar to runtime.connect, but ...
- Mozilla/Add-ons/WebExtensions/API/extension/setUpdateUrlData Sets parameters for the extension's update URL. This value is ignored for extensions that are ...
- Mozilla/Add-ons/WebExtensions/API/extension/ViewType The type of extension view.
- Mozilla/Add-ons/WebExtensions/API/extensionTypes Some common types used in other WebExtension APIs.