Skip to content

Instantly share code, notes, and snippets.

@cryks
Created February 16, 2013 08:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cryks/4966091 to your computer and use it in GitHub Desktop.
Save cryks/4966091 to your computer and use it in GitHub Desktop.
Enable move button on Instant Upload album.
// ==UserScript==
// @name Instant Move
// @namespace http://cryks.hateblo.jp/
// @description Enable move button on Instant Upload album.
// @match https://picasaweb.google.com/lh/reorder*
// ==/UserScript==
(function() {
var move = document.getElementById('lhid_move');
var enableButton = document.createElement('button');
enableButton.innerText = '移動有効化';
enableButton.onclick = function() {
move.disabled = false;
return false;
};
move.parentNode.appendChild(enableButton);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment