Advertisement
Guest User

DM Amazon Redirect

a guest
Apr 21st, 2013
271
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //amazon_2.ico by wpzoom.com under Creative Commons Attribution Share Alike (by-sa)
  2.  
  3. var self = require('self');
  4.  
  5. exports.main = function() {
  6.  
  7. var amazon_https = require("page-mod").PageMod({
  8. include: 'https://www.amazon.de/', // this script will works only on this website
  9. contentScriptWhen: 'start',
  10. contentScript: 'window.location.href = "https://www.amazon.de/exec/obidos/redirect-home%3Ftag=deskmodderde-21%26site%3Dhome"'
  11. });
  12.  
  13. var amazon_http = require("page-mod").PageMod({
  14. include: 'http://www.amazon.de/', // this script will works only on this website
  15. contentScriptWhen: 'start',
  16. contentScript: 'window.location.href = "https://www.amazon.de/exec/obidos/redirect-home%3Ftag=deskmodderde-21%26site%3Dhome"'
  17. });
  18.  
  19. require("widget").Widget({
  20.     id: "deskmodder_amazon_referrer",
  21.     label: "Unterstütze Deskmodder - kauf bei Amazon",
  22.     contentURL: self.data.url('amazon_2.ico'),
  23.     onClick: function(event) {
  24.         require("tabs").open("https://www.amazon.de/exec/obidos/redirect-home%3Ftag=deskmodderde-21%26site%3Dhome");
  25.     }
  26. });
  27.  
  28. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement