Provides links to the original pictures on Fiverr
// ==UserScript==
// @name Fiverr Original
// @author Arnold François Lecherche
// @namespace gf.qytechs.cn
// @icon http://www.fiverr.com/favicon.ico
// @version 1.2
// @description Provides links to the original pictures on Fiverr
// @include http://fiverr.com/*
// @include http://*.fiverr.com/*
// @include https://fiverr.com/*
// @include https://*.fiverr.com/*
// @grant none
// @require https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js
// @run-at document-end
// @copyright 2015 Arnold François Lecherche
// ==/UserScript==
function originalImages() {
'use strict';
var originalArray = [];
$('.delivery-item img').each(function (index, element) {
var smallURL = element.getAttribute('src'), originalURL = smallURL.replace(/\/(small|medium|large|v2_102)\/(optima_)?/g, '/original/');
if (originalURL !== smallURL) originalArray.push('<a href="' + originalURL + '">Original ' + index + '</a>');
});
$('#originalImages').remove();
$('.gallery').append('<div id="originalImages">' + originalArray.join(' | ') + '</div>');
}
$(document).ready(originalImages);
$('.js-gallery-nav').click(originalImages);
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址