I need to upload the file to this website using Google Extension
I am trying to automate the upload file. I need to develop the google chrome extension to emulate the selection of the file then upload the resume. Any ideas on how to do this. I was thinking to upload to local storage then create the event to upload to it, I tried that but it was not working too well yet. I need help. If anyone has any experience on how to do this please show me.
Why is my extension running on every webpage despite matches being defined in manifest?
I have a small extension I’m trying to make, it works well for the most part. But the issue is that it can be triggered on every webpage. I only want it to be triggered on the likes page of a post on x.com.
How to get the full response stream from /v1/threads/{threadid}/runs in js
While Builing a Chrome extension with OpenAi assistant API, i came across a method that returns a streamed response, but my code is just getting the first node of the response all the time, and the one i want is almost at the end with a “event”:”thread.message.completed” tag and a Content parameter
debugger.SendCommand ‘Runtime.evaluate’ expression:’window.open’ does not work
I want to open a new tab with dynamic code in my chrome-extension(v3).
So I take the api: chrome.debugger.sendCommand(‘Runtime.evaluate’), it can execute the javascript I expected mostly.But ‘window.open’ can not make any sense while the ‘window.close’ can work well.
Why can’t I add a proxy to history.pushState in my google chrome extension?
I’m creating my first web extension, the ideia is to mute all the farming bots in the Twitter/X’s replies.
How to scrape data from a website using JavaScript when elements lack specific identifiers?
I’m trying to scrape data from a webpage using JavaScript, but I’m encountering difficulties because the elements I need to extract don’t have specific classes or IDs that I can use as selectors.
How to access a page defined object via a Chrome Extension?
I am trying to access an object HelpObject
which is only defined in certain web pages. However, when I try to access the object through the background script, executing the query on a specific tab this way –
key captured but not working js + shortkeys+ chrome
Added code to run js function in shortkeys extension
background script: Uncaught (in promise) Error: Could not establish connection. Receiving end does not exist
I am trying to create an offscreen document that plays an audio for my chrome extension. My background.js
script receives a message that triggers the initiation of the offscreen document, which contains code to run an audio file uploaded by the user. Every time I run it, I get this in the service worker console:
How to close the prompt box in an extension?
I click a submit button on a form on a web page form but after long time the submission fails due to server error(request timed out). Then, when I refresh the page, a prompt box shows up saying it will resend the data and asking me to click a button to send or cancel. Worse is if I refresh the page again, the same prompt box shows up and seems to be overlapped on the previous one(the previous one seems not closed). I wonder if I can detect and close this kind of prompt boxes in a content script or background script automatically?