![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
webext-tools
Advanced tools
Utility functions for Web Extensions
scripting
permissionchrome.tabs
or chrome.scripting
APIsSponsored by PixieBrix :tada:
You can download the standalone bundle and include it in your manifest.json
. Or use npm:
npm install webext-tools
// This module is only offered as a ES Module
import {getTabUrl, canAccessTab} from 'webext-tools';
getTabUrl(tabId)
getTabUrl({tabId, frameId})
A no-error function to retrieve a tab or frame’s URL with a plain activeTab
permission (or regular host/tabs
permissions).
const tabId = 42;
const url = await getTabUrl(tabId);
if (url) {
console.log('The url is', url);
} else {
console.warn('We have no access to the tab');
}
const url = await getTabUrl({
tabId: 42,
frameId: 56,
});
if (url) {
console.log('The url is', url);
} else {
console.warn('We have no access to the frame');
}
canAccessTab(tabId)
canAccessTab({tabId, frameId})
Checks whether the extension has access to a specific tab or frame (i.e. content scripts are allowed to run), either via activeTab
permission or regular host permissions.
const tabId = 42;
const access = await canAccessTab(tabId);
if (access) {
console.log('We can access this tab');
chrome.tabs.executeScript(tabId, {file: 'my-script.js'});
} else {
console.warn('We have no access to the tab');
}
const access = await canAccessTab({
tabId: 42,
frameId: 56,
});
if (access) {
console.log('We can access this frame');
chrome.tabs.executeScript(42, {file: 'my-script.js', frameId: 56});
} else {
console.warn('We have no access to the frame');
}
doesTabExist(tabId)
Checks whether the tab exists.
const tabId = 42;
const tabExists = await doesTabExist(tabId);
if (tabExists) {
chrome.tabs.remove(tabExists);
}
setActionPopup(getPopupUrl)
Sets the popup URL (or removes the popup) depending on the current tab. This listens to tab changes and it will call the getPopupUrl
callback to let you determine what popup to show. The callback can also be an async function.
This can be combined with chrome.action.onClicked
to toggle between callback and popup.
The tabs
permission is required for this.
chrome.action.onClicked.addListener(() => {
console.log('Browser action was clicked on a tab other than Google’s')
});
setActionPopup(tabUrl => {
return String(tabUrl).startsWith('https://google.com')
? './google-popup.html'
: undefined;
})
MIT © Federico Brigante
FAQs
Utility functions for Web Extensions, manifest v2 and v3
The npm package webext-tools receives a total of 0 weekly downloads. As such, webext-tools popularity was classified as not popular.
We found that webext-tools demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.