您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
yeah
// ==UserScript== // @name (Instagram) Allow Right-Click Image Downloading // @namespace http://tampermonkey.net/ // @version 2024-05-16 // @description yeah // @author cupofdirtfordinner // @match https://www.instagram.com/ // @icon https://www.google.com/s2/favicons?sz=64&domain=instagram.com // @grant unsafeWindow // @license MIT // ==/UserScript== (function() { 'use strict'; console.log('gay') //"_aagw" is the class name for divs that are placed over IMG elements to prevent downloading them. see for yourself by right-clicking and inspecting any image! function DeleteAAGWs() { var aagw = document.querySelectorAll('._aagw') for (let i = 0; i < aagw.length; i++) { aagw[i].parentNode.removeChild(aagw[i]) } } setInterval(DeleteAAGWs, 60) })();