Articles tagged: WebExtensions
Found 324 documents
- Archive/Add-ons/bookmarks.export Exports bookmarks to an HTML bookmark file.
- Archive/Add-ons/bookmarks.import Imports bookmarks from an HTML bookmark file.
- Mozilla/Add-ons/WebExtensions/API/alarms/Alarm Information about a single alarm. This object is returned from alarms.get() and alarms.getAll(), ...
- Mozilla/Add-ons/WebExtensions/API/alarms/clear Cancels an alarm, given its name.
- Mozilla/Add-ons/WebExtensions/API/alarms/clearAll Cancels all active alarms.
- Mozilla/Add-ons/WebExtensions/API/alarms/create Creates a new alarm.
- Mozilla/Add-ons/WebExtensions/API/alarms/get Gets an alarm, given its name. The alarm is passed into a callback function as an alarms.Alarm ...
- Mozilla/Add-ons/WebExtensions/API/alarms/getAll Gets all active alarms. The alarms are passed into a callback, as an array of alarms.Alarm objects.
- Mozilla/Add-ons/WebExtensions/API/alarms/onAlarm Fired when any alarm set by this add-on goes off.
- Mozilla/Add-ons/WebExtensions/API/bookmarks The WebExtensions bookmarks API lets an add-on interact with and manipulate the browser's ...
- Mozilla/Add-ons/WebExtensions/API/bookmarks/BookmarkTreeNode An object of type bookmarks.BookmarkTreeNode represents a node in the bookmark tree, where each ...
- Mozilla/Add-ons/WebExtensions/API/bookmarks/BookmarkTreeNodeUnmodifiable The bookmarks.BookmarkTreeNodeUnmodifiable type is used to indicate the reason that a node in ...
- Mozilla/Add-ons/WebExtensions/API/bookmarks/create Creates a bookmark or folder as a child of the BookmarkTreeNode with the specified parentId. To ...
- Mozilla/Add-ons/WebExtensions/API/bookmarks/CreateDetails The CreateDetails type is used to describe the properties of a new bookmark or bookmark folder ...
- Mozilla/Add-ons/WebExtensions/API/bookmarks/get Given the ID of a bookmarks.BookmarkTreeNode or an array of such IDs, the bookmarks.get() method ...
- Mozilla/Add-ons/WebExtensions/API/bookmarks/getChildren bookmarks.getChildren() retrieves all the immediate children of a given bookmark folder, ...
- Mozilla/Add-ons/WebExtensions/API/bookmarks/getRecent The bookmarks.getRecent() method retrieves a specified number of the most recently added ...
- Mozilla/Add-ons/WebExtensions/API/bookmarks/getSubTree The bookmarks.getSubTree() method asynchronously retrieves a bookmarks.BookmarkTreeNode, given ...
- Mozilla/Add-ons/WebExtensions/API/bookmarks/getTree bookmarks.getTree() returns an array containing the root of the bookmarks tree as a ...
- Mozilla/Add-ons/WebExtensions/API/bookmarks/move The bookmarks.move() method moves the specified BookmarkTreeNode to the specified destination ...
- Mozilla/Add-ons/WebExtensions/API/bookmarks/onChanged Fired when there is a change to:
- Mozilla/Add-ons/WebExtensions/API/bookmarks/onChildrenReordered Fired when the children of a folder have changed their order due to the order being sorted in ...
- Mozilla/Add-ons/WebExtensions/API/bookmarks/onCreated Fired when a bookmark or folder is created.
- Mozilla/Add-ons/WebExtensions/API/bookmarks/onImportBegan Fired when the browser has started importing a set of bookmarks.
- Mozilla/Add-ons/WebExtensions/API/bookmarks/onImportEnded Fired when the browser has finished importing a set of bookmarks.
- Mozilla/Add-ons/WebExtensions/API/bookmarks/onMoved Fired when a bookmark or folder is moved to a different parent folder and/or position within a ...
- Mozilla/Add-ons/WebExtensions/API/bookmarks/onRemoved Fired when a bookmark or folder is removed. When a folder is removed recursively, a single ...
- Mozilla/Add-ons/WebExtensions/API/bookmarks/remove The bookmarks.remove() method removes a single bookmark or an empty bookmark folder.
- Mozilla/Add-ons/WebExtensions/API/bookmarks/removeTree The bookmarks.removeTree() method recursively removes a bookmark folder and all of its contents.
- Mozilla/Add-ons/WebExtensions/API/bookmarks/search The bookmarks.search() function searches for bookmarks matching the given query. Matching ...
- Mozilla/Add-ons/WebExtensions/API/bookmarks/update bookmarks.update() updates the title and/or URL of a bookmark, or the name of a bookmark folder.
- Mozilla/Add-ons/WebExtensions/API/browserAction If you specify a popup, it will be shown — and the content will be loaded — when the user clicks ...
- Mozilla/Add-ons/WebExtensions/API/browserAction/ColorArray An array of four integers in the range 0-255, defining an RGBA color. The four values specify ...
- Mozilla/Add-ons/WebExtensions/API/browserAction/disable Disables the browser action for a tab, meaning that it cannot be clicked when that tab is active.
- Mozilla/Add-ons/WebExtensions/API/browserAction/enable Enables the browser action for a tab. By default, browser actions are enabled for all tabs.
- Mozilla/Add-ons/WebExtensions/API/browserAction/getBadgeBackgroundColor Gets the background color of the browser action's badge.
- Mozilla/Add-ons/WebExtensions/API/browserAction/getBadgeText Gets the browser action's badge text.
- Mozilla/Add-ons/WebExtensions/API/browserAction/getPopup Gets the HTML document set as the popup for this browser action.
- Mozilla/Add-ons/WebExtensions/API/browserAction/getTitle Gets the browser action's title. Just as you can set the title on a per-tab basis using ...
- Mozilla/Add-ons/WebExtensions/API/browserAction/ImageDataType Pixel data for an image. Must be an ImageData object (for example, from a canvas element).
- Mozilla/Add-ons/WebExtensions/API/browserAction/onClicked Fired when a browser action icon is clicked. This event will not fire if the browser action has ...
- Mozilla/Add-ons/WebExtensions/API/browserAction/openPopup This API is also available as browser.browserAction.openPopup() in a version that returns a promise.
- Mozilla/Add-ons/WebExtensions/API/browserAction/setBadgeBackgroundColor Sets the background color for the badge.
- Mozilla/Add-ons/WebExtensions/API/browserAction/setBadgeText Sets the badge text for the browser action. The badge is displayed on top of the icon.
- Mozilla/Add-ons/WebExtensions/API/browserAction/setIcon Sets the icon for the browser action. The icon can be specified either as the path to an image ...
- Mozilla/Add-ons/WebExtensions/API/browserAction/setPopup Sets the HTML document that will be opened as a popup when the user clicks on the browser ...
- Mozilla/Add-ons/WebExtensions/API/browserAction/setTitle Sets the browser action's title. The title is displayed in a tooltip over the browser action's ...
- 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 this add-on that you have registered using the commands manifest.json key.
- Mozilla/Add-ons/WebExtensions/API/commands/onCommand This API is also available as browser.commands.onCommand.*.
- Mozilla/Add-ons/WebExtensions/API/contextMenus Add items to the browser's context menu, to be displayed in the contexts you specify. For ...
- Mozilla/Add-ons/WebExtensions/API/contextMenus/ACTION_MENU_TOP_LEVEL_LIMIT The maximum number of top level extension items that can be added to a context menu item whose ...
- Mozilla/Add-ons/WebExtensions/API/contextMenus/ContextType The different contexts a menu can appear in. Specifying "all" is equivalent to the combination ...
- Mozilla/Add-ons/WebExtensions/API/contextMenus/create Creates a new context menu item.
- Mozilla/Add-ons/WebExtensions/API/contextMenus/ItemType The type of menu item.
- Mozilla/Add-ons/WebExtensions/API/contextMenus/OnClickData Information sent when a context menu item is clicked.
- Mozilla/Add-ons/WebExtensions/API/contextMenus/onClicked Fired when a context menu item is clicked.
- Mozilla/Add-ons/WebExtensions/API/contextMenus/remove Removes a context menu item.
- Mozilla/Add-ons/WebExtensions/API/contextMenus/removeAll Removes all context menu items added by this add-on.
- Mozilla/Add-ons/WebExtensions/API/contextMenus/update Updates a previously created context menu item.
- Mozilla/Add-ons/WebExtensions/API/cookies Enables WebExtensions 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/downloads Enables WebExtensions to interact with the browser's download manager. You can use this API ...
- 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.
- 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 application.
- 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.
- 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 Chrome event.