SpyShop Bypass Select,Copy & Paste

Bypass Copy and Paste for spyshop.pl

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

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

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name        SpyShop Bypass Select,Copy & Paste
// @namespace   https://github.com/x3ric
// @match       https://www.spyshop.pl/blog/*
// @grant       none
// @version     1.1
// @author      x3ric
// @license     MIT
// @description Bypass Copy and Paste for spyshop.pl 
// ==/UserScript==

(function() {
    'use strict';
    // Overriding the specific script functionalities by resetting the event handlers
    document.onkeydown = null;
    document.onselectstart = null;
    document.onmousedown = null;
    document.onclick = null;
    // Reset CSS styles that prevent user interaction
    document.querySelectorAll('*').forEach(el => {
        el.style.userSelect = 'text';
        el.style.cursor = '';
    });
    // Remove event listeners that were added via the problematic script
    function removeAllEventListeners() {
        var newElement = document.createElement('div');
        newElement.innerHTML = document.body.innerHTML;
        document.body.innerHTML = newElement.innerHTML;
    }
    // Call this function to remove listeners on page load and navigation events
    window.onload = removeAllEventListeners;
    document.addEventListener('DOMContentLoaded', removeAllEventListeners);
    // Patch for the Safari touch call, if necessary
    document.addEventListener('touchstart', function(e) {
        e.stopPropagation();
    }, true);
    document.addEventListener('touchend', function(e) {
        e.stopPropagation();
    }, true);
})();