Skip to content

Instantly share code, notes, and snippets.

@wbamberg
Created November 6, 2014 07:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wbamberg/58b7832ded442fe5b7c6 to your computer and use it in GitHub Desktop.
Save wbamberg/58b7832ded442fe5b7c6 to your computer and use it in GitHub Desktop.
// do not do this in a real add-on, use contentScriptFile instead.
var listener = "window.addEventListener('hashchange', function() {" +
" alert(window.location.hash);" +
"}, false);"
var pageMod = require("sdk/page-mod").PageMod({
include: "*.google.ca",
contentScript: listener
});
require("sdk/tabs").open("https://google.ca");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment