mjs
mjs

Reputation: 22347

Chrome extensions how to access a global variable set in a script

I have this in a chrome extension pulled in js file.

  function App() { alert(1) }

When I right click -> show console and try to fire the method the method App is not defined.

Why ? Something wrong here?

Upvotes: 1

Views: 1248

Answers (1)

user1796666
user1796666

Reputation:

Make sure that your console is working in the context of the plugin and not the page. There's a select box on the bottom of your console. Change 'page context' to 'chrome extension'

chrome page context

Upvotes: 3

Related Questions