Skip to content

Instantly share code, notes, and snippets.

@fgcui1204
Forked from Rand01ph/geektime.user.js
Created May 8, 2019 08:20
Show Gist options
  • Save fgcui1204/7de16ad11fbbc84386372b6bb1037b61 to your computer and use it in GitHub Desktop.
Save fgcui1204/7de16ad11fbbc84386372b6bb1037b61 to your computer and use it in GitHub Desktop.
让极客时间的内容可以复制
// ==UserScript==
// @name geektime copy
// @namespace http://tampermonkey.net/
// @version 0.1
// @description 让极客时间的内容可以复制!
// @author Rand01ph
// @match https://time.geekbang.org/column/*
// @grant none
// @require http://cdn.staticfile.org/jquery/2.1.1/jquery.min.js
// ==/UserScript==
(function() {
'use strict';
// Your code here...
document.addEventListener("copy", function (event) {
event.stopPropagation();
}, true);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment