您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Opens the fullsize Instagram image after shift-clicking the preview photo on a single image or profile page.
当前为
// ==UserScript== // @name Instagram Full Size Reloaded // @namespace http://despecial.de // @homepage https://greasyfork.org/en/scripts/14755-instagram-full-size-reloaded // @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'); } });