NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name yahoojp_login_simple // @namespace http://catherine.v0cyc1pp.com/yahoojp_login_simple.user.js // @include http://www.yahoo.co.jp/ // @include https://www.yahoo.co.jp/ // @include https://login.yahoo.co.jp/config/login* // @author greg10 // @run-at document-end // @license GPL 3.0 // @version 1.1 // @require http://code.jquery.com/jquery-2.2.1.min.js // @grant none // @description YahooJPのデフォルトのログイン画面だとアカウントの履歴が使えないので、アカウント履歴が使える簡易ログインをデフォルトにする。 // ==/UserScript== //console.log("yahoojp_login_simple start"); this.$ = this.jQuery = jQuery.noConflict(true); var simple_login_url = "https://login.yahoo.co.jp/config/login?.display=simple"; $("div#anotherID > a").attr("href",simple_login_url); $("h3 > span > a").attr("href",simple_login_url);