Copy Simply Johnny's

I just wanna copy something

当前为 2022-03-08 提交的版本,查看 最新版本

// ==UserScript==
// @name Copy Simply Johnny's
// @namespace bambooom
// @version 0.2
// @description I just wanna copy something
// @author bambooom
// @homepageURL https://zhuzi.dev
// @supportURL https://zhuzi.dev
// @license MIT
// @include https://*.johnnys-net.jp/*
// @include https://*.johnnys-web.com/*
// @include https://*.johnny-associates.co.jp/*
// @include https://johnnys-shop.jp/*
// @include https://*.johnnys-shop.jp/*
// @include https://j-island.net/*
// @include https://*.j-island.net/*
// @run-at document-end
// @grant unsafeWindow
// ==/UserScript==

(function() {
  let css = `
    body{
      user-select: auto!important;
    }
    h1, h2, h3, h4, h5, p, span, img {
      user-select: auto!important;
    }
    *:not(input) {
      user-select: auto!important;
    }
  `;
  let styleNode = document.createElement("style");
  styleNode.appendChild(document.createTextNode(css));
  (document.querySelector("head") || document.documentElement).appendChild(styleNode);

  let donot = [...document.querySelectorAll('script')].filter(n => /donot\.js$/.test(n.src));
  if (donot.length) {
    donot[0].remove();
  }
  unsafeWindow.KEY_ENABLE = 1;
  unsafeWindow.________J && unsafeWindow.________J.doNot({
      selectContent: null,
      captureImages: null,
     useContextMenu: null,
            useKeys: null,
  });
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址