Skip to content

Instantly share code, notes, and snippets.

@larvata
Last active May 25, 2016 20:14
Show Gist options
  • Save larvata/f1cb8877ece586b70f25 to your computer and use it in GitHub Desktop.
Save larvata/f1cb8877ece586b70f25 to your computer and use it in GitHub Desktop.
enable context menu for 755 images
// ==UserScript==
// @name 7gogo Image Helper
// @namespace http://your.homepage/
// @version 0.1
// @description enter something useful
// @author You
// @match https://7gogo.jp/*
// @grant none
// ==/UserScript==
document.body.oncontextmenu = function(e){
if(e.target.nodeName==='IMG'){
e.stopPropagation();
return true;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment