B!
@@ -5,12 +5,24 @@
* @include https://*
* @contributor dankogai http://let.hatelabo.jp/dankogai/let/gYC-xpO_j7qpDw (Fork of)
* @author noromanba http://let.hatelabo.jp/noromanba/let/gYC-y5_1hrbuWA
- * @license MIT License
+ * @license MIT License http://opensource.org/licenses/MIT
* @javascript_url
*/
-(function () {
- // canonical for https; e.g. https://www.youtube.com/watch?v=OKOrkLxOBoY
- var url = (document.head.querySelector('link[href][rel=canonical]') || {}).href || location.href;
+// for append c.f.
+// http://let.hatelabo.jp/noromanba/let/gYC-y9Ggo7jqKg
+
+// side-effect; fragment due to canonical
+(() => {
+ // 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 url = canonical();
+
window.open('http://b.hatena.ne.jp/entry/' + url, '_blank');
-})();
+})();
+
(() => {
const canonical = () => {
return (document.querySelector('head meta[property="og:url"][content]') || {}).content ||
(document.querySelector('head link[rel="canonical"][href]') || {}).href ||
location.href;
};
const url = canonical();
window.open('http://b.hatena.ne.jp/entry/' + url, '_blank');
})();
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。