ScreenKing Unlock

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

  1. // ==UserScript==
  2. // @name ScreenKing Unlock
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.0
  5. // @description Unlock the ScreenKing app to display the "Video Sniffing" feature download button
  6. // @author ScreenKing Unlock
  7. // @match *://*/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. // Create a new style element
  15. const style = document.createElement('style');
  16. style.textContent = `
  17. .ybd_video_slide_d_ownItem_btn {
  18. display: inline !important;
  19. }
  20. `;
  21.  
  22. // Add the style element to the head of the page
  23. document.head.appendChild(style);
  24.  
  25. // Ensure the target elements are immediately visible
  26. document.querySelectorAll('.ybd_video_slide_d_ownItem_btn').forEach(el => {
  27. el.style.display = 'inline';
  28. });
  29. })();