I live in Omaha.
 
Navigation
 
Search
 
Random Image
DSC_0057.JPG
 
Me. Elsewhere.
 
Archives
 
Darcy
 
Recently Read
 
Things I Like
EFF
 
License
 
Territorial Seeds User Script

So I was buying our garden seeds at Territorial Seed and they had a stupid 90′s “no right click” script installed. Lame, I need my tabs!

So I took a look and then wrote my first Greasemonkey script. Check it out if you need it, it should work on other sites that try the same trick.

territorial.seed.no.right.click.user.js

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Version 0.1
// Copyright (c) 2010, John Hobbs
// Released under the GPL license
// http://www.gnu.org/copyleft/gpl.html
//
// ==UserScript==
// @name          Territorial Seed No Right Click
// @namespace     http://www.velvetcache.org/
// @description   Disable the disable right click script on Territorial Seed
// @include       http://www.territorialseed.com/*
// ==/UserScript==
 
window.addEventListener (
  'load',
  function () {
    setTimeout( "document.oncontextmenu = null;", 150 );
  },
  true
);

Posted February 16th, 2010 - Permalink
Categories: Geek - Life
Tags: , , ,
You can leave a comment, or trackback from your own site.
 
Possibly Related Posts
 
Adjacent Posts
 
Comments
 
Copyright © 2006 - 2010 John Hobbs
get userping