ScreenKing Unlock

Unlock the ScreenKing app to display the "Video Sniffing" feature download button

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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

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

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         ScreenKing Unlock
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Unlock the ScreenKing app to display the "Video Sniffing" feature download button
// @author       ScreenKing Unlock
// @match        *://*/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Create a new style element
    const style = document.createElement('style');
    style.textContent = `
        .ybd_video_slide_d_ownItem_btn {
            display: inline !important;
        }
    `;

    // Add the style element to the head of the page
    document.head.appendChild(style);

    // Ensure the target elements are immediately visible
    document.querySelectorAll('.ybd_video_slide_d_ownItem_btn').forEach(el => {
        el.style.display = 'inline';
    });
})();