Greasy Fork is available in English.
解决阿里云网盘面包屑文字不能选择复制。
当前为
// ==UserScript==
// @name 阿里云网盘面包屑文字选择
// @description 解决阿里云网盘面包屑文字不能选择复制。
// @version 1.0.0
// @namespace 阿里云网盘面包屑文字选择
// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @author 会说话的鱼
// @include *//www.aliyundrive.com/*
// @require https://cdn.bootcdn.net/ajax/libs/jquery/1.9.1/jquery.min.js
// @run-at document-start
// @grant none
// @rewritten_script_code javascript
// @license GPLv3
// ==/UserScript==
(function () {
'use strict';
$(function () {
init();
});
})();
function init() {
$(document).on('click', '.breadcrumb-item-link--M-p4b', function(){
var obj = $(this);
alert(obj.text());
});
}