While running code in content_script.js file, I get the following error in page where the extension runs : ReferenceError: $ is not defined.
I didn't changed anything in the default package.json file, and the manifest file look like this:
"content_scripts": [
{
"matches": ["*://*.domain.com/*"],
"js": ["js/vendor.js", "js/content_script.js"]
}
],
Please note that the extension is running in dev watch mode.
Cheers! 🖖