NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name Amigurumi Today - Allow Copy
// @namespace yoharnu.amigurumi.today
// @version 0.1
// @description remove copy protection from amigurumi.today
// @copyright 2023, yoharnu (https://openuserjs.org/users/yoharnu)
// @author yoharnu
// @match http*://*.amigurumi.today/*
// @grant none
// @license MIT
// @updateURL https://openuserjs.org/meta/yoharnu/Amigurumi_Today_-_Allow_Copy.meta.js
// @downloadURL https://openuserjs.org/install/yoharnu/Amigurumi_Today_-_Allow_Copy.user.js
// ==/UserScript==
(function () {
'use strict';
document.getElementsByTagName("BODY")[0].style = '-webkit-touch-callout: auto; -webkit-user-select: auto; -moz-user-select: auto; -ms-user-select: auto; -o-user-select: auto; user-select: auto;';
})();