Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //amazon_2.ico by wpzoom.com under Creative Commons Attribution Share Alike (by-sa)
- var self = require('self');
- exports.main = function() {
- var amazon_https = require("page-mod").PageMod({
- include: 'https://www.amazon.de/', // this script will works only on this website
- contentScriptWhen: 'start',
- contentScript: 'window.location.href = "https://www.amazon.de/exec/obidos/redirect-home%3Ftag=deskmodderde-21%26site%3Dhome"'
- });
- var amazon_http = require("page-mod").PageMod({
- include: 'http://www.amazon.de/', // this script will works only on this website
- contentScriptWhen: 'start',
- contentScript: 'window.location.href = "https://www.amazon.de/exec/obidos/redirect-home%3Ftag=deskmodderde-21%26site%3Dhome"'
- });
- require("widget").Widget({
- id: "deskmodder_amazon_referrer",
- label: "Unterstütze Deskmodder - kauf bei Amazon",
- contentURL: self.data.url('amazon_2.ico'),
- onClick: function(event) {
- require("tabs").open("https://www.amazon.de/exec/obidos/redirect-home%3Ftag=deskmodderde-21%26site%3Dhome");
- }
- });
- };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement