Skip to content
New issue

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

executeScript with a file? #662

Open
pasikonik opened this issue Mar 18, 2021 · 0 comments
Open

executeScript with a file? #662

pasikonik opened this issue Mar 18, 2021 · 0 comments

Comments

@pasikonik
Copy link

pasikonik commented Mar 18, 2021

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant