Direct Link - Fembed API

This script will skip the ads/countdown on tool.baoxinh.com's Fembed API

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği yüklemek için Tampermonkey gibi bir uzantı yüklemeniz gerekir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği indirebilmeniz için ayrıca Tampermonkey gibi bir eklenti kurmanız gerekmektedir.

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

Bu stili yüklemek için Stylus gibi bir uzantı yüklemeniz gerekir.

Bu stili yüklemek için Stylus gibi bir uzantı kurmanız gerekir.

Bu stili yükleyebilmek için Stylus gibi bir uzantı yüklemeniz gerekir.

Bu stili yüklemek için bir kullanıcı stili yöneticisi uzantısı yüklemeniz gerekir.

Bu stili yüklemek için bir kullanıcı stili yöneticisi uzantısı kurmanız gerekir.

Bu stili yükleyebilmek için bir kullanıcı stili yöneticisi uzantısı yüklemeniz gerekir.

(Zateb bir user-style yöneticim var, yükleyeyim!)

// ==UserScript==
// @name        Direct Link - Fembed API
// @namespace   https://www.in4sser.com
// @match       *://tool.baoxinh.com/forex.cg*
// @grant       none
// @version     1.0
// @author      iN4sser
// @grant       GM_addStyle
// @description This script will skip the ads/countdown on tool.baoxinh.com's Fembed API
// @require  https://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js
// ==/UserScript==
Array.from(document.getElementsByClassName('btn bt-success hidden')).forEach(function(v){v.removeAttribute("disabled");});
setTimeout(function() {
    document.getElementById('gotolink').click();
}, 0);

GM_addStyle ( `
    .panel-heading.text-center, .col-md-12, .navbar-default, div#timer, footer.container, .filename{
    display: none !important;
}
.hidden {
    visibility: unset !important;
    height: unset !important;
    overflow: unset !important;
    display: block;
}
button[disabled], html input[disabled], button#gotolink {
    cursor: pointer;
    display: block !important;
}
button#gotolink {
    visibility: visible !important;
    text-align: center;
    margin: 0 auto;
    width: 100%;
    line-height: 5;
}
body{
  visibility: hidden !important;
}
` );