1.0.6 • Published 6 years ago

engine-client-module v1.0.6

Weekly downloads
4
License
ISC
Repository
-
Last release
6 years ago

TAMPERMONKEY

Install tampermonkey

Chrome

Firefox

TAMPERMONKEY RULE FOR GRUPOBBVA

// ==UserScript==
// @name         BBVA Engine client module
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// https://qa.grupobbva.com/particulares/index.jsp
// @match        https://*.grupobbva.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    try{
        const head = document.querySelector('head');
        const compatScript = document.createElement('script');
        compatScript.src = 'https://localhost:5000/inclusite-engine-client-ng.js';
        compatScript.type = "text/javascript";
        // head.insertBefore(compatScript, head.firstChild);
        // head.appendChild(compatScript);
        document.getElementsByTagName('head')[0].appendChild(compatScript);

        console.log('cargado script!');
    }catch(e){
        console.error(e);
    }

})();
1.0.6

6 years ago

1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago