Skip to content
Advertisement

chrome.runtime.getURL() unable to inject javascript file into my webpage for manifest V3

Background: I’m making a chrome extension, and I must migrate it to MV3. I modified my manifest.json file to include web resources, but when I go to inject my resource from my content script using chrome.runtime.getURL, it says it can’t find my file. Specifically…

GET: Chrome-extension:://”the_url/inject_script.js” net::ERR_FILE_NOT_FOUND

I’m using the content root path to my web resource (javascript elements I want to inject onto the page), which is what I read needed to be used when using MV3. Below is my manifest file.

Manifest.json

JavaScript

Content Script

Below is my content script, which is supposed to create a scrip DOM element. The script (inject_script.js) element injects some buttons onto the webpage.

JavaScript

Below is my project directory.

enter image description here

Advertisement

Answer

wOxxOm answer helped me.

I was using the content root path to reference my inject_script, but I should have been using the final path in the dist folder instead.

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement