Skip to content

Instantly share code, notes, and snippets.

@mtsmfm
Created May 31, 2021 15:21
Show Gist options
  • Save mtsmfm/5e80ea47f907e9257b3cc7e74018eb4d to your computer and use it in GitHub Desktop.
Save mtsmfm/5e80ea47f907e9257b3cc7e74018eb4d to your computer and use it in GitHub Desktop.
tabCapture with v3 manifest
chrome.action.onClicked.addListener(() => {
console.log(chrome.tabCapture);
});
{
"name": "demo",
"description": "demo",
"version": "0.1.0",
"permissions": [
"tabCapture"
],
"host_permissions": [
"*://*/*"
],
"action": {},
"manifest_version": 3,
"background": {
"service_worker": "background.js"
}
}
@mtsmfm
Copy link
Author

mtsmfm commented May 31, 2021

image

@Aknc34
Copy link

Aknc34 commented Jan 25, 2023

Gt

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment