// DeviantART - Immobilizer v0.2
// Made By Luke Stevenson {http://lucanos.deviantart.com}
// Distributed and Maintained via GMVC
// Last updated: 23 November 2006
//
//   This script makes the "Make available on deviantMOBILE" checkbox
// unchecked as default.
//
// ==UserScript==
// @name              DeviantART - Immobilizer
// @namespace         http://gmvc.lucanos.com/
// @description       (v0.2) Changes the "Make available on deviantMOBILE" checkbox unchecked as default.
// @include           http://www.deviantart.com/submit/
// @include           http://www.deviantart.com/view/*
// @include           http://www.deviantart.com/deviation/*
// ==/UserScript==

(function() {

	unsafeWindow.document.getElementById('devismobile').checked = false;

})()