Ziv
Ziv
PD🧩 Plasmo Developers
Created by Ziv on 11/13/2024 in #👾extension
error GET chrome-extension://invalid/ net::ERR_FAILED
Hi all, I built an extension for LinkedIn using Plasmo. My manifest looks like so:
"manifest": {
"permissions": [
"storage",
"unlimitedStorage"
],
"host_permissions": [
"https://www.linkedin.com/*"
]
}
"manifest": {
"permissions": [
"storage",
"unlimitedStorage"
],
"host_permissions": [
"https://www.linkedin.com/*"
]
}
I have 2 content scripts, both use this config:
export const config: PlasmoCSConfig = {
matches: ["https://www.linkedin.com/*"]
}
export const config: PlasmoCSConfig = {
matches: ["https://www.linkedin.com/*"]
}
Whenever I navigate to https://www.linkedin.com/feed/ with my extension installed, I'm getting a handful (1000+) errors like the one in the title. The extension does not crash or something, it is still working as expected despite these errors. Can anyone help me resolve this?
1 replies