このQiitaはn分で読めます。
by
efcl
2015-01-06 [2015/01/06 10:12:46]
600文字/分の計算
@@ -1,7 +1,7 @@
/*
* @title このQiitaはn分で読めます。
* @description 600文字/分の計算
- * @include http://qiita.com/*/items/*
+ * @include http://qiita.com/*
* @license MIT License
* @require
*/
/*
* @title このQiitaはn分で読めます。
* @description 600文字/分の計算
* @include http://qiita.com/*
* @license MIT License
* @require
*/
var bodyContent = document.querySelector('[itemProp="articleBody"]').textContent.replace(/\s+/g, "");
var bodyLength = bodyContent.length;
var canReadPerMinute = 600;
var minutes = Math.round(bodyLength / canReadPerMinute);
var p = document.createElement("p");
var result = "この記事は"+minutes+"分で読めます";
p.appendChild(document.createTextNode(result));
var ins = document.querySelector(".itemsShowHeaderTitle_title");
ins.parentNode.appendChild(p);
alert(result);
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。