JavBus removing the bgImg on detail pages

it will remove the bgImg on the detail pages on javBus!

2020-12-16 या दिनांकाला. सर्वात नवीन आवृत्ती पाहा.

// ==UserScript==
// @name         JavBus removing the bgImg on detail pages
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  it will remove the bgImg on the detail pages on javBus!
// @author       You
// @match        https://www.javbus.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    var els = document.getElementsByClassName("bigImage");
    var el = els[0];
    el.parentNode.removeChild(el);

    console.log(els);

    // Your code here...
})();