500px.com SaveAs

Allow right click to save picture

目前为 2015-03-06 提交的版本。查看 最新版本

// ==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);