We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
While running code in content_script.js file, I get the following error in page where the extension runs : ReferenceError: $ is not defined.
content_script.js
ReferenceError: $ is not defined
I didn't changed anything in the default package.json file, and the manifest file look like this:
package.json
"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! 🖖
The text was updated successfully, but these errors were encountered:
did you have import * as $ from 'jquery' in the ts file where you use jquery?
import * as $ from 'jquery'
Sorry, something went wrong.
No branches or pull requests
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:Please note that the extension is running in dev watch mode.
Cheers! 🖖
The text was updated successfully, but these errors were encountered: