Instagram Full Size Reloaded

Opens the fullsize Instagram image after shift-clicking the preview photo on a single image or profile page.

目前為 2015-12-10 提交的版本,檢視 最新版本

// ==UserScript==
// @name         Instagram Full Size Reloaded
// @namespace    http://despecial.de
// @homepage     https://gf.qytechs.cn
// @version      1.0
// @description  Opens the fullsize Instagram image after shift-clicking the preview photo on a single image or profile page.
// @author       despecial
// @match        *://*.instagram.com/*
// @grant        none
// ==/UserScript==

$(document).on('click','a[data-reactid^=".0.1.0.1"], div[data-reactid^=".0.1.0.0.0"]:eq(1)',function(e){
	var fs = '',
	 rplcd = ['/s640x640','/s750x750','/sh0.08','/c135.0.810.810','/c120.0.724.724'];
	    
	fs = $(this).find('img').attr('src');
	for (var i = 0; i < rplcd.length; ++i) {
		if(fs.indexOf(rplcd[i])!== -1) fs=fs.replace(rplcd[i],'');
	}
    if(e.shiftKey) {
        e.preventDefault();
        window.open(fs, '_blank');
    }
});

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址