goo.gl to Details
by
maRk
2015-12-05 [2015/12/05 12:17:01]
goo.gl short URL to change .info URL
-
/*
* @title goo.gl to Details
* @description goo.gl short URL to change .info URL
* @include http://*
* @license MIT License
* @require
*/
(function () {
Array.prototype.forEach.call(document.querySelectorAll('a[href*="://goo.gl/"'), function (e) {
if (e.href.match(/^https?:\/\/goo\.gl\/(\w{4,6})/)) {
e.href = 'https://goo.gl/#analytics/goo.gl/' + RegExp.$1 + '/all_time';
}
});
})();
-
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。