您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
work around, for the instagram bug to select elements when closing the post
当前为
// ==UserScript== // @name Instagram Close Fix // @namespace https://greasyfork.org/users/821661 // @description work around, for the instagram bug to select elements when closing the post // @match *://www.instagram.com/* // @version 1.4 // @author hdyzen // @license MIT // @run-at document-idle // @require https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js // ==/UserScript== (function () { "use strict"; $(document).on("pointerdown pointerup", ".x1qjc9v5.x9f619.x78zum5.xdt5ytf.x1iyjqo2.xl56j7k", function (e) { if (e.target.matches(".x1qjc9v5.x9f619.x78zum5.xdt5ytf.x1iyjqo2.xl56j7k")) { e.preventDefault(); e.stopPropagation(); } }); })();