Advertisement
Guest User

Untitled

a guest
Aug 9th, 2013
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. img = document.createElement("IMG");
  2. img.src = "image.png";
  3.  
  4. img = document.createElement("IMG");
  5. img.src = chrome.extension.getURL('image.png');
  6.  
  7. img = document.createElement("IMG");
  8. img.src = window.location.origin + "/image.png";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement