chrome-extensions-samples icon indicating copy to clipboard operation
chrome-extensions-samples copied to clipboard

Chrome Extensions Samples

Results 105 chrome-extensions-samples issues
Sort by recently updated
recently updated
newest added

I could open a socket.io websocket in Manifest V2 to communicate with an external webserver but V2 no longer works and I'm forced to use V3. V3 appears to be...

I take [page redder](https://github.com/GoogleChrome/chrome-extensions-samples/tree/main/examples/page-redder) as an example. The given example uses `document.body.style = ...` with `chrome.scripting.executeScript()`, now is it possible to use jQuery (`$("body").css()`) instead? I tried but `$` was...

How can migrating to manifest v 3? https://github.com/GoogleChrome/chrome-extensions-samples/tree/main/mv2-archive/api/downloads/download_open On manifest v3 don't work: Unchecked runtime.lastError: User gesture required

Hello there, how to listen window moved progress? im using event chrome.windows.onBoundsChanged but this event only trigger after move finish

Is there anyway we can have rounded edges for default popup? It is better if we can do that using something like CSS "border-radius" : ```CSS body { width: 300px;...

hi am tiring to use the tabCapture API without success for a few days now what I tried running the tab capture in the content - results in undefined to...

every time i try to do `chrome.tabs.query` it always says that it cannot read undefined. I tried doing `console.log(chrome.tabs)` and found that it also gave undefined. Is this supposed to...

**Describe the bug** The page did not jump after clicking Errors button. **To Reproduce** 1. Enter the code into the serviceworker file: ```javascript const num = 0; num++; ``` 2....

https://github.com/GoogleChrome/lighthouse/issues/14203#issue-1299784621 _Originally posted by @jeje-barbershop in https://github.com/GoogleChrome/lighthouse/issues/14203#issuecomment-1179620071_

I'm unclear how to resolve my invalid CSP. I'm unable to find an example in the _Migrating to Manifest v3_ Google Chrome extension (https://developer.chrome.com/docs/extensions/mv3/intro/mv3-migration/#content-security-policy). Could you provide an example in...