NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name ameblo_allow_saveimage // @namespace http://catherine.v0cyc1pp.com/ameblo_allow_saveimage.user.js // @include http://ameblo.jp/* // @author greg10 // @license GPL 3.0 // @version 1.0 // @require http://code.jquery.com/jquery-3.1.1.min.js // @grant none // @description amebloの画像を右クリックで保存できるようにする. // ==/UserScript== function handler(e){ e.stopPropagation(); } addEventListener('contextmenu', handler, true); $("#naviBox").css('display','none');