Premium Onlinetools

Gives you premium features access: Unlimited Usage, No Wait Time, Instant Download, Instant Copy-to-clipboard

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey, Greasemonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

You will need to install an extension such as Tampermonkey to install this script.

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्क्रिप्ट व्यवस्थापक एक्स्टेंशन इंस्टॉल करावे लागेल.

(माझ्याकडे आधीच युझर स्क्रिप्ट व्यवस्थापक आहे, मला इंस्टॉल करू द्या!)

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

(माझ्याकडे आधीच युझर स्टाईल व्यवस्थापक आहे, मला इंस्टॉल करू द्या!)

// ==UserScript==
// @name         Premium Onlinetools
// @namespace    https://greasyfork.org/en/users/10118-drhouse
// @version      1.2
// @description  Gives you premium features access: Unlimited Usage, No Wait Time, Instant Download, Instant Copy-to-clipboard
// @include      https://onlinetools.com/*
// @include      https://onlinetexttools.com/*
// @include      https://onlinecsvtools.com/*
// @include      https://onlinetsvtools.com/*
// @include      https://onlinejsontools.com/*
// @include      https://onlineyamltools.com/*
// @include      https://onlinexmltools.com/*
// @include      https://onlinemathtools.com/*
// @include      https://onlinefractaltools.com/*
// @include      https://onlinenumbertools.com/*
// @include      https://onlineintegertools.com/*
// @include      https://onlineunicodetools.com/*
// @include      https://onlineasciitools.com/*
// @include      https://onlineutf8tools.com/*
// @include      https://onlinebinarytools.com/*
// @include      https://onlinehextools.com/*
// @include      https://onlinetexttools.com/*
// @include      https://onlinestringtools.com/*
// @include      https://onlinelisttools.com/*
// @include      https://onlinerandomtools.com/*
// @include      https://onlineimagetools.com/*
// @include      https://onlinejpgtools.com/*
// @include      https://onlinepngtools.com/*
// @include      https://onlinegiftools.com/*
// @include      https://onlinetimetools.com/*
// @include      https://onlinefiletools.com/*
// @include      https://onlinehashtools.com/*
// @include      https://onlinecryptotools.com/*
// @include      https://onlinebitmaptools.com/*
// @include      https://onlinelinuxtools.com/*
// @include      https://onlinebase64tools.com/*
// @include      https://onlinesettools.com/*
// @include      https://onlinepdftools.com/*
// @include      https://onlineaudiotools.com/*
// @include      https://onlinebrowsertools.com/*
// @include      https://onlinecsstools.com/*
// @include      https://onlinejstools.com/*
// @include      https://onlinetabletools.com/*
// @require      https://code.jquery.com/jquery-3.7.0.min.js
// @require      https://cdnjs.cloudflare.com/ajax/libs/babel-standalone/6.18.2/babel.js
// @require      https://cdnjs.cloudflare.com/ajax/libs/babel-polyfill/6.16.0/polyfill.js
// @author       drhouse
// @license      CC-BY-NC-SA-4.0
// @icon https://www.google.com/s2/favicons?sz=64&domain=onlinetexttools.com
// ==/UserScript==
/* global jQuery, $ */
this.$ = this.jQuery = jQuery.noConflict(true);
(function($){

    $("#clipboardModalLabel").text("You're using the hacked premium plan")
    $("[id^='clipboardModal'] > div > div > div.modal-body > p").remove()
    
    $.each($('*').attr('data-subscription','free') , function (){
        $(this).attr('data-subscription','premium')
    }); 

})(jQuery);