★
by
noromanba
2018-05-19 [2018/05/19 09:58:25]
simple Hatena Star Everywhere w/ mobile IF
@@ -3,11 +3,22 @@
* @description simple Hatena Star Everywhere
* @include http://*
* @include https://*
- * @license MIT License http://nrm.mit-license.org/2012
- * @require
+ * @license MIT License https://nrm.mit-license.org/2012
+ * @javascript_url
*/
-(function () {
- var url = (document.head.querySelector('link[href][rel=canonical]') || {}).href || location.href;
- location.href = 'http://s.hatena.ne.jp/mobile/entry?uri=' + encodeURIComponent(url);
+// c.f.
+// http://ptech.g.hatena.ne.jp/noromanba/20170210/1486677295
+// http://let.hatelabo.jp/noromanba/let/hLHWyqq8tehZ
+(() => {
+ // 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();
+
+ window.open('https://s.hatena.ne.jp/mobile/entry?uri=' + encodeURIComponent(canon));
})();
+
/*
* @title ★
* @description simple Hatena Star Everywhere
* @include http://*
* @include https://*
* @license MIT License https://nrm.mit-license.org/2012
* @javascript_url
*/
// c.f.
// http://ptech.g.hatena.ne.jp/noromanba/20170210/1486677295
// http://let.hatelabo.jp/noromanba/let/hLHWyqq8tehZ
(() => {
// 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();
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 です。