@@ -1,6 +1,6 @@ /* * @title ★ - * @description simple Hatena Star Everywhere + * @description simple Hatena Star Everywhere w/ mobile IF * @include http://* * @include https://* * @license MIT License https://nrm.mit-license.org/2012 @@ -8,21 +8,28 @@ */ // e.g. -// http://d.hatena.com/ -// https://example.com/ +// https://www.hatena.com +// https://example.com // c.f. // http://ptech.g.hatena.ne.jp/noromanba/20170210/1486677295 // http://let.hatelabo.jp/noromanba/let/hLHWyqq8tehZ (() => { + 'use strict'; + // https://gist.github.com/noromanba/d730ccf3ae5e6916cd60 // https://gist.github.com/noromanba/3705f2e9ebb8538328b2f3f9a6f1a9b3 - const canonical = () => { - return (document.querySelector('head meta[property="og:url"][content]') || {}).content || - (document.querySelector('head link[rel="canonical"][href]') || {}).href || - location.href; - }; - const canon = canonical(); + // c.f. + // http://ogp.me + // not in use head contexted selector, due to PDFium has not head + const canon = + (document.querySelector([ + 'head meta[property="og:url"][content]' + ]) || {}).content || + (document.querySelector([ + 'head link[rel="canonical"][href]' + ]) || {}).href || + location.href; window.open('https://s.hatena.ne.jp/mobile/entry?uri=' + encodeURIComponent(canon)); })();
  • /*
     * @title ★
     * @description simple Hatena Star Everywhere w/ mobile IF
     * @include http://*
     * @include https://*
     * @license MIT License https://nrm.mit-license.org/2012
     * @javascript_url
     */
    
    // e.g.
    // https://www.hatena.com
    // https://example.com
    
    // c.f.
    // http://ptech.g.hatena.ne.jp/noromanba/20170210/1486677295
    // http://let.hatelabo.jp/noromanba/let/hLHWyqq8tehZ
    (() => {
        'use strict';
    
        // https://gist.github.com/noromanba/d730ccf3ae5e6916cd60
        // https://gist.github.com/noromanba/3705f2e9ebb8538328b2f3f9a6f1a9b3
        // c.f.
        // http://ogp.me
        // not in use head contexted selector, due to PDFium has not head
        const canon =
            (document.querySelector([
                'head meta[property="og:url"][content]'
            ]) || {}).content ||
            (document.querySelector([
                'head link[rel="canonical"][href]'
            ]) || {}).href ||
            location.href;
    
        window.open('https://s.hatena.ne.jp/mobile/entry?uri=' + encodeURIComponent(canon));
    })();
    
    
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2018/05/19 09:58:25 - 2018-05-19
  2. 2017/02/19 17:39:50 - 2017-02-19
  3. 2017/02/19 17:20:50 - 2017-02-19
  4. 2017/02/19 17:17:08 - 2017-02-19
  5. 2013/07/09 07:20:50 - 2013-07-09
  6. 2012/03/31 00:47:36 - 2012-03-31
  7. 2012/03/29 15:01:43 - 2012-03-29