chosEN

  • /*
     * @title chosEN
     * @description choice English page w/o login/sign-in
     * @include http://*
     * @include https://*
     * @contributor noromanba   http://let.hatelabo.jp/noromanba/let/hLHVndmmiaF5
     * @license MIT License https://opensource.org/licenses/MIT
     * @javascript_url
     */
    
    // e.g.
    // https://instagram.com/instagram?hl=ja
    // https://twitter.com/twitter?lang=ja
    // https://www.google.com?hl=ja
    // https://webcache.googleusercontent.com/search?q=cache:https://example.com/&hl=ja
    
    // TBD
    // - en-* en_*
    // - pathname
    (() => {
        'use strict';
    
        const url = new URL(location.href);
        const langQuery = new Set([
            'hl',
            'lang',
        ]);
    
        [...url.searchParams.keys()].some(key => {
            if (langQuery.has(key)) { // TBD .get() instead
                url.searchParams.set(key, 'en');
                return true;
            }
        });
    
        location.search = url.search;
    })();
    
    
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2018/08/02 07:47:43 - 2018-08-02