Skip to content

Commit

Permalink
Style and release notes updates
Browse files Browse the repository at this point in the history
  • Loading branch information
rebloor committed Oct 25, 2023
1 parent d90bdc9 commit f52c683
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ To manage contextual identities, you use the {{WebExtAPIRef("contextualIdentitie
Several extension APIs include the `cookieStoreId` in objects to enable extensions to associate these objects with specific contextual identities.

- {{WebExtAPIRef("browsingData.removeCookies()")}} and {{WebExtAPIRef("browsingData.removeLocalStorage()")}} where you use {{WebExtAPIRef("browsingData.removalOptions")}} to set the cookie store items are removed from.
- {{WebExtAPIRef("contentscripts.register")}} enables you to register a content script restricted to documents associated with one or more specific cookieStoreIds.
- {{WebExtAPIRef("contentscripts.register")}} enables you to register a content script restricted to documents associated with one or more `cookieStoreIds`.
- {{WebExtAPIRef("downloads")}} where you can associate a download with a cookie store.
- {{WebExtAPIRef("proxy")}} where the details passed into the {{WebExtAPIRef("proxy.onRequest")}} listener identify the cookie store associated with the request.
- {{WebExtAPIRef("tabs")}} where you can {{WebExtAPIRef("tabs.create","create")}} a tab in a specific container tab, {{WebExtAPIRef("tabs.tab","get")}} the cookieStoreId for a tab, and {{WebExtAPIRef("tabs.query","query")}} tabs based on their associated cookie store.
- {{WebExtAPIRef("userscripts.register")}} enables you to register a content script restricted to documents associated with one or more specific cookieStoreIds.
- {{WebExtAPIRef("webrequest")}} where all the events return the cookieStoreId of the request.
- {{WebExtAPIRef("tabs")}} where you can {{WebExtAPIRef("tabs.create","create")}} a tab in a container tab, {{WebExtAPIRef("tabs.tab","get")}} the `cookieStoreId` for a tab, and {{WebExtAPIRef("tabs.query","query")}} tabs based on their associated cookie store.
- {{WebExtAPIRef("userscripts.register")}} enables you to register a content script restricted to documents associated with one or more `cookieStoreIds`.
- {{WebExtAPIRef("webrequest")}} where all the events return the `cookieStoreId` of the request.
- {{WebExtAPIRef("windows.create")}} where you can specify the cookie store for the tabs added to a window when it's created.

## Permissions
Expand Down
3 changes: 2 additions & 1 deletion files/en-us/mozilla/firefox/releases/82/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@ This article provides information about the changes in Firefox 82 that will affe

## Changes for add-on developers

- The [`tabs.captureTab()`](/en-US/docs/Mozilla/Add-ons/WebExtensions/API/tabs/captureTab) and [`tabs.captureVisibleTab()`](/en-US/docs/Mozilla/Add-ons/WebExtensions/API/tabs/captureVisibleTab) methods now capture an area of the relevant tab's content specified by the `rect` property of the provided [`options`](/en-US/docs/Mozilla/Add-ons/WebExtensions/API/extensionTypes/ImageDetails) object, or the visible area of the tab if this property is not provided ([Firefox bug 1636508](https://bugzil.la/1636508)). Previously the `rect` property was not available, and these methods always captured the visible area of the relevant tab
- The [`tabs.captureTab()`](/en-US/docs/Mozilla/Add-ons/WebExtensions/API/tabs/captureTab) and [`tabs.captureVisibleTab()`](/en-US/docs/Mozilla/Add-ons/WebExtensions/API/tabs/captureVisibleTab) methods now capture an area of the relevant tab's content specified by the `rect` property of the provided [`options`](/en-US/docs/Mozilla/Add-ons/WebExtensions/API/extensionTypes/ImageDetails) object, or the visible area of the tab if this property is not provided ([Firefox bug 1636508](https://bugzil.la/1636508)). Previously the `rect` property was not available, and these methods always captured the visible area of the relevant tab.
- Read-only access to `cookieStoreId` no longer requires the `"cookies"` [permission](/en-US/docs/Mozilla/Add-ons/WebExtensions/manifest.json/permissions) ([Firefox bug 1662329](https://bugzil.la/1662329)).

## Older versions

Expand Down

0 comments on commit f52c683

Please sign in to comment.