Relative Content

Tag Archive for google-chrome-extensionchrome-extension-manifest-v3

chrome extension devtools panel, how to only update for current window

I followed the pattern from https://learn.microsoft.com/en-us/microsoft-edge/extensions-chromium/developer-guide/devtools-extension#step-2—add-a-devtools-panel to create a panel that will update when the website is clicked. But I noticed when I have two windows open, devtools panel will update no matter which window was clicked. How can I prevent or filter requests to update devtools only when that devtools was opened by the window that contains the tab receiving the click?

Why doesn’t my Declarative Net Request work on google search?

I’m trying to redirect any request to Google to another site. What I currently have works for google.com and google.com/test (they go to example.com and example.com/test respectively), but not for a Google search (google.com/search?…). What am I doing wrong here?

How to fill inputs on page from Chrome extension values?

I am creating an extension which takes in values, and fills it onto a page only when I click the submit button on the extension. I am having trouble getting the popup to communicate with the page. I was able to get the form filled with chrome.action.onClicked.addListener but could not get it working on button click from the extension popup.

How to fill inputs on page from extension values?

I am creating an extension which takes in values, and fills it onto a page only when I click the submit button on the extension. I am having trouble getting the popup to communicate with the page. I was able to get the form filled with chrome.action.onClicked.addListener but could not get it working on button click from the extension popup.