Skip to content

Instantly share code, notes, and snippets.

@zhengxiaowai
Forked from Rand01ph/geektime.user.js
Created December 7, 2018 09:44
Show Gist options
  • Save zhengxiaowai/3e1c9923851cbef98ced2e0dd7b0992d to your computer and use it in GitHub Desktop.
Save zhengxiaowai/3e1c9923851cbef98ced2e0dd7b0992d 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