Greasy Fork is available in English.

Instagram圖片右鍵另存

實現右鍵選單另存Instagram圖片功能

// ==UserScript==
// @name         Instagram圖片右鍵另存
// @namespace    https://fasttech.pixnet.net/blog
// @version      0.1
// @description  實現右鍵選單另存Instagram圖片功能
// @author       kencyue
// @match        https://www.instagram.com/*
// @icon         https://static.cdninstagram.com/rsrc.php/yS/r/f_5NUHW7AZC.ico
// @grant        none
// @license MIT
// ==/UserScript==
el =document.getElementsByClassName("_aagw");
document.onmousemove = function(){

        for(i=0;i<el.length;i++)
    {
        void(el[i].remove());
    }

};