Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Sisfuzz/6516ae09f4f9f2270c21fb1e18eaa4a6 to your computer and use it in GitHub Desktop.
Save Sisfuzz/6516ae09f4f9f2270c21fb1e18eaa4a6 to your computer and use it in GitHub Desktop.
js: include javascript file from chrome console for debuggin
// Include javascript file in chrome console
var script= document.createElement('script');
script.type= 'text/javascript';
script.src= 'script.js';
document.head.appendChild(script);
@Sisfuzz
Copy link
Author

Sisfuzz commented Mar 14, 2018

include js to chrome console

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment