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
I'm wondering, how can I set script file for executeScipt?
browser.tabs.executeScript(null, { file: 'script.js' }, (result) => { ... });
Is it require different build with separated file or is it possible to do it in a simpler way?
My current workaround looks like this:
import { bodyOfMethod } from '@/js/script' browser.tabs.executeScript(null, { code: `(${bodyOfMethod})()` }, (result) => { ... });
but it looks hacky to me.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm wondering, how can I set script file for executeScipt?
Is it require different build with separated file or is it possible to do it in a simpler way?
My current workaround looks like this:
but it looks hacky to me.
The text was updated successfully, but these errors were encountered: