Skip to content

Instantly share code, notes, and snippets.

@legnoh
Created May 6, 2017 05:39
Show Gist options
  • Save legnoh/2a775cd22fd931524cf7599c86ba2f59 to your computer and use it in GitHub Desktop.
Save legnoh/2a775cd22fd931524cf7599c86ba2f59 to your computer and use it in GitHub Desktop.
Y!SHP Descliber
// ==UserScript==
// @name Y!SHP Descliber
// @namespace http://www.legnoh.jp
// @version 0.1
// @description disable checkbox to desclibe Y!SHP mail
// @author legnoh
// @match https://order.shopping.yahoo.co.jp/cgi-bin/review-order*
// @grant none
// ==/UserScript==
(function() {
'use strict';
$('.elMMList > li > input').prop("checked",false);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment