您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Allow right click to save picture
当前为
// ==UserScript== // @name 500px.com SaveAs // @namespace 06msNqk7e1ub45dZ // @description Allow right click to save picture // @version 1.0 // @license Creative Commons BY-NC-SA // @encoding utf-8 // @icon http://www.gravatar.com/avatar/afb8376a9f634cd3501af4387de6425f.png // @include http://500px.com/photo/* // @include https://500px.com/photo/* // @grant none // ==/UserScript== setTimeout(function () { var elements = document.querySelectorAll('img[data-protect]'); for (var i = 0; i < elements.length; i++) { elements[i].oncontextmenu = null; elements[i].removeAttribute('data-protect'); } }, 0);