UPC2Intel

  • /*
     * @title UPC2Intel
     * @description Ingress UPC Reports Mapで開いている場所をIntel Mapで開きます。
     * @include http://rank-info.net/ingress/ingressupcmap.html
     * @license MIT License
     * @require 
     */
    
    (function(){
      var u = document.location.href;
      var l = u.match(/ingressupcmap.html\?lat=([\d\.]+)&lon=([\d\.]+)/);
      open('https://www.ingress.com/intel?ll='+l[1]+','+l[2]+'&z=15');
    })();
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2015/04/08 00:14:15 - 2015-04-08