Iwara Extension Script

Like数とLike率をバー表示 & NG機能と強調機能 & タイトル簡略化

  1. // ==UserScript==
  2. // @name Iwara Extension Script
  3. // @name:en Iwara Extension Script
  4. // @namespace https://greasyfork.org/ja/users/115273-conn
  5. // @description Like数とLike率をバー表示 & NG機能と強調機能 & タイトル簡略化
  6. // @description:en Adding Like bars, Like Ratio bars, BlackList, and FavList, Simplify titles
  7. // @include http://ecchi.iwara.tv/*
  8. // @include https://ecchi.iwara.tv/*
  9. // @include http://www.iwara.tv/*
  10. // @include https://www.iwara.tv/*
  11. // @version 1.9
  12. // @grant GM_getValue
  13. // @grant GM_setValue
  14. // ==/UserScript==
  15.  
  16. //// パラメータ設定 ////
  17.  
  18. // ↓ リストのバー表示まわり
  19. var likebaropacity = '0.8'; // Likeバーと枠の透明度。0(実質バー表示オフ)~1(通常)
  20. var ratiotextopacity = '1.0'; // Like率テキストの透明度。0(実質数値表示オフ)~1(通常)
  21. var ratiobaropacity = '0.5'; // Like率バーの透明度。0(実質バー表示オフ)~1(通常)
  22. var borderthickness = '5'; // 枠の太さ。単位ピクセル。0なら枠なし
  23. var borderopacity = '0.8'; // 枠の透明度。0(不可視)~1(通常)
  24. var likemax = 200; // Likeバーのカンスト上限
  25. var ratiomax = 3.0; // Like率バーのカンスト上限。単位パーセント
  26.  
  27. // ↓ NG表示設定
  28. var NGopacity = '0.3'; // NGしたやつの透明度。0(完全非表示)~1(実質NGオフ)
  29. var NGdispstat = true; // NGしたやつもバー表示する?
  30. var showNGword = true; // ヒットしたNGワードを表示する?
  31.  
  32. // ↓ 強調表示設定
  33. var emRGB = 'ffff77'; // 強調したやつの背景色。rrggbb。'ffffff' (白背景)なら実質強調オフ
  34. var showEMword = true; // ヒットした強調ワードを表示する?
  35.  
  36. // ↓ 静画用設定
  37. var doforimage = true; // 静画もする?
  38. var likemaxi = 50; // 静画ページでのLikeバーのカンスト上限
  39. var ratiomaxi = 4.0; // 静画ページでのLike率バーのカンスト上限。単位パーセント
  40.  
  41. // ↓ タイトル用設定
  42. var listitlelength = 100; // 一覧に表示するタイトルの最大文字数(半角相当)。これ以上は省略される。だいたい28文字で2行
  43. var titlearrangeatwatchpage = true; // 個別動画・静画視聴ページタイトルを変更する? ※ 「(YYYY-MM-DD)[USERNAME] S-TITLE」に変更。ファイル名に使えない文字は全角置換
  44.  
  45. // ↓ NGワード。ほおりこめー
  46. var NGWords = [
  47. 'わたしがNGワードだ',
  48. 'こんなふうにシングルクォートで囲って、最後にカンマを忘れずに',
  49. 'NG索敵範囲は該当箇所のHTMLソース全てです',
  50. 'タイトルも投稿者名も含みます',
  51. '↓とりあえず作者をNGに入れてみるテスト↓',
  52. 'conn',
  53. '↑できれば外してくれると嬉しいかも…↑',
  54. /こうやってシングルクォートの代わりにスラッシュを使うと、正規表現もできます/,
  55. 'このへんの説明、理解したら消しちゃってくださいね',
  56. 'この最後の行だけはカンマ無しで'
  57. ];
  58.  
  59. // ↓ 強調ワード。大好き
  60. var EMWords = [
  61. 'わたしが強調ワードだ',
  62. 'NGワードと同様です',
  63. '好きな投稿者やモデルを登録すると良いんじゃないかな',
  64. 'やっぱりこの最後の行もカンマ無しで'
  65. ];
  66.  
  67. // ↓ グローバル設定が機能しない時用のデフォルト設定
  68. var GMmode = 2; // モード (0:OFF、1:ON(赤)、2:ON(緑))
  69. var GMdoNG = true; // NG機能使う?
  70. var GMdoEM = true; // 強調機能使う?
  71. var GMdoRatio = true; // LIKE率表示する?
  72. var GMdoStitle = true; // タイトル簡略化する?
  73.  
  74. //// !ここから開発用! ////
  75.  
  76. var dummy = null;
  77. var origelems = [];
  78. var origbar = '';
  79.  
  80. // サブ関数、HTMLエスケープ //
  81. function htmlsafestr (instr) {
  82. var str = instr;
  83. if(typeof str !== 'string') return str;
  84. str = str.replace(/^>/,'');
  85. str = str.replace(/<$/,'');
  86. return str.replace(/[&'`"<>\/\\]/g, function(match) {
  87. return {
  88. '&': '&amp;',
  89. "'": '&#x27;',
  90. '`': '&#x60;',
  91. '"': '&quot;',
  92. '<': '&lt;',
  93. '>': '&gt;',
  94. '\/': '&#47;',
  95. '\\': '&#x5c;',
  96. }[match];
  97. });
  98. }
  99.  
  100. // サブ関数、ファイル名に使えない文字を全角に変更 //
  101. function filenamesafestr (instr) {
  102. var str = instr;
  103. if(typeof str !== 'string') return str;
  104. str = str.replace(/&amp;/g,'&');
  105. return str.replace(/[\\\/&'`"<>:\*\?\|]/g, function(match) {
  106. return {
  107. '\\': '¥',
  108. '\/': '/',
  109. '&': '&',
  110. "'": '’',
  111. '`': '´',
  112. '"': '”',
  113. '<': '<',
  114. '>': '>',
  115. ':': ':',
  116. '\*': '*',
  117. '\?': '?',
  118. '\|': '|',
  119. }[match];
  120. });
  121. }
  122.  
  123. // サブ関数、タイトルからお馴染みの記載を削除 //
  124. function simplifystr (instr) {
  125. var str = instr;
  126. if(typeof str !== 'string') return str;
  127. str = str.replace(/ /g,' '); // 全角空白
  128. str = str.replace(/[mMM]{2}[dDD]/g,''); // 「MMD」等
  129. str = str.replace(/[ \-]*[rRR] ?\-? ?[11][5588]/g,''); // 「R-18」等
  130. str = str.replace(/[ \-]*[11][5588] ?\-? ?[rRR]/g,''); // 「18R」等
  131. str = str.replace(/[0-9]{2,}[fF][pP][sS]/g,''); // 「60fps」等
  132. str = str.replace(/[0-9]{3,}[pPpP]/g,''); // 「1080p」等
  133. str = str.replace(/Full\-HD/g,''); // Full-HD
  134. str = str.replace(/紳士向け/g,''); // 紳士向け
  135. str = str.replace(/紳士動画/g,''); // 紳士動画
  136. str = str.replace(/&[a-z0-9#]+;([a-z0-9#]+);/g,'&$1;'); // エスケープ文字エラー修正
  137. str = str.replace(/([\[\(「【<])[ _\/]/g,'$1'); // 括弧内先頭空白削除
  138. str = str.replace(/[ _\/]([\]\)」】>])/g,'$1'); // 括弧内末尾空白削除
  139. str = str.replace(/\[[ \-_\/::,]*\]/g,''); // 削除後の残った[]
  140. str = str.replace(/\([ \-_\/::,]*\)/g,''); // 削除後の残った()
  141. str = str.replace(/【[ \-_\/::,]*】/g,''); // 削除後の残った【】
  142. str = str.replace(/「[ \-_\/::,]*」/g,''); // 削除後の残った「」
  143. str = str.replace(/([ \-_\/::,]*)/g,''); // 削除後の残った()
  144. str = str.replace(/<[ \-_\/::,]*>/g,''); // 削除後の残った<>
  145. str = str.replace(/^[ _\/]+/g,''); // 先頭の空白
  146. str = str.replace(/[ _\/]+$/g,''); // 末尾の空白
  147. str = str.replace(/[ ]{2,}/g,' '); // 2個以上の空白
  148. return str;
  149. }
  150.  
  151. // サブ関数、文字列から指定された長さ以上を省略 //
  152. function trimstr (instr,maxlen) {
  153. var twobytelen = 1.3; // 2バイト文字の幅の倍率
  154. var str = instr;
  155. if(typeof str !== 'string') return str;
  156. var i = 0;
  157. var char = '';
  158. var charue = '';
  159. var count = 0;
  160. var trimidx = str.length;
  161. var isover = false;
  162. var isescaping = false;
  163. for (i = 0; i < str.length ; i++) {
  164. char = str.charAt(i);
  165. if (char == '&'){
  166. isescaping = true;
  167. } else if (char == ';') {
  168. isescaping = false;
  169. }
  170. if (!isescaping) {
  171. charue = escape(char);
  172. if (charue.length < 4) {
  173. count++;
  174. } else {
  175. count+=twobytelen;
  176. }
  177. if (count > maxlen) {
  178. trimidx = i;
  179. isover = true;
  180. i = str.length;
  181. }
  182. }
  183. }
  184. if (isover) {
  185. str = str.substr(0,trimidx);
  186. str += '...';
  187. }
  188. return str;
  189. }
  190.  
  191. // サブ関数、文字列をクリップボードへコピー //
  192. function copytext(string){
  193. var temp = document.createElement('textarea');
  194.  
  195. temp.value = string;
  196. temp.selectionStart = 0;
  197. temp.selectionEnd = temp.value.length;
  198.  
  199. var s = temp.style;
  200. s.position = 'fixed';
  201. s.left = '-100%';
  202.  
  203. document.body.appendChild(temp);
  204. temp.focus();
  205. var result = document.execCommand('copy');
  206. temp.blur();
  207. document.body.removeChild(temp);
  208. // true なら実行できている falseなら失敗か対応していないか
  209. return result;
  210. }
  211.  
  212. //// 動画一覧ページ用 ////
  213. function listmanip () {
  214.  
  215. // 初期化
  216. var likes = null;
  217. var disps = null;
  218. var likebarstr = '';
  219. var ratiobarstr = '';
  220. var dispnum = 0;
  221. var likenum = 0;
  222. var ratio = 0;
  223. var likewidth = 0;
  224. var ratiowidth = 0;
  225. var likenR = 0;
  226. var rationB = 0;
  227. var likeRGB = '255,0,0';
  228. var ratioRGBA = '0,0,255,1';
  229. var dummy,dummy2 = null;
  230. var elem = '';
  231. var nghit = false;
  232. var ngword = '';
  233. var emword = '';
  234. var elems = null;
  235. var title = '';
  236. var titleshort = '';
  237. var author = '';
  238. var switchstr = '';
  239. var i,j = 0;
  240.  
  241. // グローバル設定読み込み
  242. if(typeof(GM_getValue) === 'function'){
  243. elem = GM_getValue('mode');
  244. if (isNaN(elem)) {
  245. GM_setValue('mode', GMmode);
  246. }else {
  247. GMmode = elem;
  248. }
  249. elem = GM_getValue('doNG');
  250. if (elem === null) {
  251. GM_setValue('doNG', GMdoNG);
  252. }else {
  253. GMdoNG = elem;
  254. }
  255. elem = GM_getValue('doEM');
  256. if (elem === null) {
  257. GM_setValue('doEM', GMdoEM);
  258. }else {
  259. GMdoEM = elem;
  260. }
  261. elem = GM_getValue('doRatio');
  262. if (elem === null) {
  263. GM_setValue('doRatio', GMdoRatio);
  264. }else {
  265. GMdoRatio = elem;
  266. }
  267. elem = GM_getValue('doStitle');
  268. if (elem === null) {
  269. GM_setValue('doStitle', GMdoStitle);
  270. }else {
  271. GMdoStitle = elem;
  272. }
  273. }
  274.  
  275. // スイッチ
  276. elems = document.body.getElementsByClassName('menu nav nav-pills pull-left');
  277. if(elems.length > 0) {
  278. if(origbar === ''){
  279. origbar = elems[0].innerHTML;
  280. }
  281. switchstr = '$&<li class="leaf"><button type="button" id="exttoggle"';
  282. if (GMmode === 0) {
  283. switchstr += '>Ext Off<\/botton><\/li>\n';
  284. } else if (GMmode === 1) {
  285. switchstr += ' style="background-color:#ee0000;color:white">Ext On (Red)';
  286. } else {
  287. switchstr += ' style="background-color:#00dd00;color:white">Ext On (Green)';
  288. }
  289. switchstr += '<\/botton><\/li>\n';
  290. if (GMmode > 0) {
  291. switchstr += '<li class="leaf"><button type="button" id="ngtoggle"';
  292. if (GMdoNG) {
  293. switchstr += ' style="background-color:#ee0000;color:white"';
  294. }
  295. switchstr += '>NG<\/botton><\/li>\n';
  296. switchstr += '<li class="leaf"><button type="button" id="emtoggle"';
  297. if (GMdoEM) {
  298. switchstr += ' style="background-color:#00bb00;color:white"';
  299. }
  300. switchstr += '>EM<\/botton><\/li>\n';
  301. switchstr += '<li class="leaf"><button type="button" id="ratiotoggle"';
  302. if (GMdoRatio) {
  303. switchstr += ' style="background-color:#0000ff;color:white"';
  304. }
  305. switchstr += '>Ratio<\/botton><\/li>\n';
  306. switchstr += '<li class="leaf"><button type="button" id="stitletoggle"';
  307. if (GMdoStitle) {
  308. switchstr += ' style="background-color:#a52a2a;color:white"';
  309. }
  310. switchstr += '>S-Title<\/botton><\/li>\n';
  311. }
  312. elem = origbar.replace(/\n<li title=""><a href="\/forum" title="">フォーラム<\/a><\/li>\n/, switchstr);
  313. elems[0].innerHTML = elem;
  314. }
  315.  
  316. // スイッチ押された時
  317. if (typeof(GM_setValue) === 'function'){
  318. elems = document.getElementById('exttoggle');
  319. if (elems !== null) {
  320. elems.onclick = function () {
  321. if (GMmode > 1) { GMmode = 0;} else {GMmode++;}
  322. GM_setValue('mode',GMmode);
  323. listmanip();
  324. };
  325. }
  326. elems = document.getElementById('ngtoggle');
  327. if (elems !== null) {
  328. elems.onclick = function () {
  329. GMdoNG = !GMdoNG;
  330. GM_setValue('doNG',GMdoNG);
  331. listmanip();
  332. };
  333. }
  334. elems = document.getElementById('emtoggle');
  335. if (elems !== null) {
  336. elems.onclick = function () {
  337. GMdoEM = !GMdoEM;
  338. GM_setValue('doEM',GMdoEM);
  339. listmanip();
  340. };
  341. }
  342. elems = document.getElementById('ratiotoggle');
  343. if (elems !== null) {
  344. elems.onclick = function () {
  345. GMdoRatio = !GMdoRatio;
  346. GM_setValue('doRatio',GMdoRatio);
  347. listmanip();
  348. };
  349. }
  350. elems = document.getElementById('stitletoggle');
  351. if (elems !== null) {
  352. elems.onclick = function () {
  353. GMdoStitle = !GMdoStitle;
  354. GM_setValue('doStitle',GMdoStitle);
  355. listmanip();
  356. };
  357. }
  358. } else {
  359. elems[0].innerHTML += '<li class="leaf" title="Your environments don\'t allow GM_ functions. Please switch the setting on the script code directly." style="color:red">* Can\'t Switch<\/li>\n';
  360. }
  361.  
  362. // 動画リスト取得
  363. elems = document.body.getElementsByClassName('node node-video node-teaser node-teaser clearfix');
  364.  
  365. // 各エントリ初期化
  366. if (typeof(origelems[0]) === 'undefined') {
  367. for (i = 0; i < elems.length; i++) {
  368. origelems[i] = elems[i].innerHTML;
  369. }
  370. } else {
  371. for (i = 0; i < elems.length; i++) {
  372. elems[i].innerHTML = origelems[i];
  373. elems[i].removeAttribute('style');
  374. }
  375. }
  376.  
  377. // 設定オフ時引き返す
  378. if (GMmode === 0) {
  379. return;
  380. }
  381.  
  382. // 各エントリ操作
  383. for (i = 0; i < elems.length; i++) {
  384. elem = elems[i].innerHTML;
  385.  
  386. // タイトル取得
  387. dummy = elem.match(/<img src=".+ title="([^"]+)".+>/);
  388. if (dummy !== null) {
  389. title = dummy[1];
  390. if (GMdoStitle) {title = simplifystr(title);}
  391. title = trimstr(title,listitlelength);
  392. } else {
  393. dummy = elem.match(/<h3 class="title"><a href=".*">(.*)<\/a><\/h3>/);
  394. if (dummy !== null) {
  395. title = dummy[1];
  396. if (GMdoStitle) {title = simplifystr(title);}
  397. } else {
  398. title = '';
  399. }
  400. }
  401.  
  402. // 作者取得
  403. dummy = elem.match(/class="username">(.*)<\/a>/);
  404. if (dummy !== null) {
  405. author = dummy[1];
  406. } else {
  407. author = '';
  408. }
  409.  
  410. // NG機能
  411. nghit = false;
  412. if (GMdoNG) {
  413. for (j = 0; j < NGWords.length; j++) {
  414. dummy = elem.match(NGWords[j]);
  415. if (dummy !== null) {
  416. ngword = htmlsafestr(dummy[0]);
  417. title = title.replace(ngword,'<span style="background-color:orangered;color:white">'+ngword+'<\/span>');
  418. author = author.replace(ngword,'<span style="background-color:orangered;color:white">'+ngword+'<\/span>');
  419. elems[i].setAttribute('style','opacity:' + NGopacity);
  420. if (showNGword) {
  421. elem = elem.replace(/(<\/div>\n)(\n\t+<\/div>)/,'$1<br><div class="left-icon likes-icon" style="color:red; background:rgba(255,255,255,0.5)"> NG:'+ngword+'<\/div>\n$2');
  422. }
  423. nghit = true;
  424. j = NGWords.length;
  425. }
  426. }
  427. }
  428.  
  429. // 強調機能
  430. if (GMdoEM) {
  431. for (j = 0; j < EMWords.length; j++) {
  432. dummy = elem.match(EMWords[j]);
  433. if (dummy !== null) {
  434. emword = dummy[0];
  435. title = title.replace(emword,'<span style="background-color:#aaffaa">'+emword+'<\/span>');
  436. author = author.replace(emword,'<span style="background-color:#aaffaa">'+emword+'<\/span>');
  437. elems[i].setAttribute('style','background-color:#' + emRGB);
  438. if (showEMword) {
  439. elem = elem.replace(/(<\/div>\n)(\n\t+<\/div>)/,'$1<br><div class="left-icon likes-icon" style="color:green; background:rgba(255,255,255,0.5)"> EM:'+emword+'<\/div>\n$2');
  440. }
  441. j = EMWords.length;
  442. }
  443. }
  444. }
  445.  
  446. elem = elem.replace(/(<h3 class="title"><a href=".*">).+(<\/a><\/h3>)/,'$1'+title+'$2');
  447. elem = elem.replace(/(class="username">).*(<\/a>)/,'$1'+author+'$2');
  448.  
  449. // バー表示機能
  450. if (NGdispstat || !nghit) {
  451. likes = elem.match(/heart\"><\/i> (\d+)/);
  452. disps = elem.match(/open\"><\/i> ([0-9\.]+)k/);
  453. if (disps !== null) {
  454. dispnum = parseFloat(disps[1]) * 1000;
  455. } else {
  456. disps = elem.match(/open\"><\/i> ([0-9]+)/);
  457. dispnum = parseFloat(disps[1]);
  458. }
  459. if (likes !== null) {
  460. likenum = parseInt(likes[1]);
  461. likewidth = Math.min(Math.floor(likenum * 70 / likemax + 40), 110);
  462. likenR = 255 - Math.min(Math.floor(likenum * 205 / likemax + 50), 255);
  463. if (GMmode === 1) {
  464. likeRGB = '255,' + likenR.toString()+ ',' + likenR.toString(); // red
  465. } else {
  466. likeRGB = likenR.toString()+ ',240,' + likenR.toString(); // green
  467. }
  468. likebarstr = 'right-icon likes-icon" align="right" style="width:' + likewidth.toString() + 'px; background-color:rgba\(' + likeRGB + ',' + likebaropacity + '\)"';
  469. elem = elem.replace(/right-icon likes-icon\"/, likebarstr);
  470. // Like率
  471. if (GMdoRatio) {
  472. ratio = 100 * likenum / dispnum;
  473. ratiowidth = Math.min(Math.floor(ratio * 70 / ratiomax + 40), 110);
  474. rationB = 255 - Math.min(Math.floor(ratio * 205 / ratiomax + 50), 255);
  475. ratioRGBA = rationB.toString()+ ',' + rationB.toString() + ',255,' + ratiobaropacity;
  476. ratiobarstr = '$&<br>\n\t\t\t<div class="right-icon likes-icon" align="right" style="width:' + ratiowidth.toString() + 'px; background:rgba\(' + ratioRGBA + '\)"><span style="opacity:' + ratiotextopacity + '">' + (ratio.toFixed(1)).toString() + '%</span></div>';
  477. elem = elem.replace(/open.*div>/, ratiobarstr);
  478. }
  479. elem = elem.replace(/height=\"150\"/, 'height="150" style="border:solid ' + borderthickness + 'px rgba\(' + likeRGB + ',' + borderopacity + '\)"');
  480. }
  481. }
  482. elems[i].innerHTML = elem;
  483. }
  484.  
  485. // 静画エントリ用
  486. if (doforimage) {
  487. elems = document.body.getElementsByClassName('node node-image node-teaser node-teaser clearfix');
  488. for (i = 0; i < elems.length; i++) {
  489. elem = elems[i].innerHTML;
  490.  
  491. // タイトル取得
  492. dummy = elem.match(/<h3 class="title"><a href=".*">(.*)<\/a><\/h3>/);
  493. if (dummy !== null) {
  494. title = dummy[1];
  495. if (GMdoStitle) {title = simplifystr(title);}
  496. } else {
  497. title = '';
  498. }
  499.  
  500. // 作者取得
  501. dummy = elem.match(/class="username">(.*)<\/a>/);
  502. if (dummy !== null) {
  503. author = dummy[1];
  504. } else {
  505. author = '';
  506. }
  507.  
  508. // NG機能
  509. nghit = false;
  510. if (GMdoNG) {
  511. for (j = 0; j < NGWords.length; j++) {
  512. dummy = elem.match(NGWords[j]);
  513. if (dummy !== null) {
  514. ngword = htmlsafestr(dummy[0]);
  515. title = title.replace(ngword,'<span style="background-color:orangered;color:white">'+ngword+'<\/span>');
  516. author = author.replace(ngword,'<span style="background-color:orangered;color:white">'+ngword+'<\/span>');
  517. elems[i].setAttribute('style','opacity:' + NGopacity);
  518. if (showNGword) {
  519. elem = elem.replace(/(<\/div>\n)(\t+<\/div>)/,'$1<br><div class="left-icon likes-icon" style="color:red; background:rgba(255,255,255,0.5)"> NG:'+NGWords[j]+'<\/div>\n$2');
  520. }
  521. nghit = true;
  522. j = NGWords.length;
  523. }
  524. }
  525. }
  526.  
  527. // 強調機能
  528. if (GMdoEM) {
  529. for (j = 0; j < EMWords.length; j++) {
  530. dummy = null;
  531. dummy = elem.match(EMWords[j]);
  532. if (dummy !== null) {
  533. emword = dummy[0];
  534. title = title.replace(emword,'<span style="background-color:#aaffaa">'+emword+'<\/span>');
  535. author = author.replace(emword,'<span style="background-color:#aaffaa">'+emword+'<\/span>');
  536. elems[i].setAttribute('style','background-color:#' + emRGB);
  537. if (showEMword) {
  538. elem = elem.replace(/(<\/div>\n)(\t+<\/div>)/,'$1<br><div class="left-icon likes-icon" style="color:green; background:rgba(255,255,255,0.5)"> EM:'+EMWords[j]+'<\/div>\n$2');
  539. }
  540. j = EMWords.length;
  541. }
  542. }
  543. }
  544.  
  545. elem = elem.replace(/(<h3 class="title"><a href=".*">).*(<\/a><\/h3>)/,'$1'+title+'$2');
  546. elem = elem.replace(/(class="username">).*(<\/a>)/,'$1'+author+'$2');
  547.  
  548. // バー表示機能
  549. if (NGdispstat || !nghit) {
  550. likes = elem.match(/heart\"><\/i> (\d+)/);
  551. disps = elem.match(/open\"><\/i> ([0-9\.]+)k/);
  552. if (disps !== null) {
  553. dispnum = parseFloat(disps[1]) * 1000;
  554. } else {
  555. disps = elem.match(/open\"><\/i> ([0-9]+)/);
  556. dispnum = parseFloat(disps[1]);
  557. }
  558. if (likes !== null) {
  559. likenum = parseInt(likes[1]);
  560. likewidth = Math.min(Math.floor(likenum * 70 / likemaxi + 40), 110);
  561. likenR = 255 - Math.min(Math.floor(likenum * 205 / likemaxi + 50), 255);
  562. if (GMmode === 1) {
  563. likeRGB = '255,' + likenR.toString()+ ',' + likenR.toString(); // red
  564. } else {
  565. likeRGB = likenR.toString()+ ',240,' + likenR.toString(); // green
  566. }
  567. likebarstr = 'right-icon likes-icon" align="right" style="width:' + likewidth.toString() + 'px; background-color:rgba\(' + likeRGB + ',' + likebaropacity + '\)"';
  568. elem = elem.replace(/right-icon likes-icon\"/, likebarstr);
  569. // Like率
  570. if (GMdoRatio) {
  571. ratio = 100 * likenum / dispnum;
  572. ratiowidth = Math.min(Math.floor(ratio * 70 / ratiomax + 40), 110);
  573. rationB = 255 - Math.min(Math.floor(ratio * 205 / ratiomax + 50), 255);
  574. ratioRGBA = rationB.toString()+ ',' + rationB.toString() + ',255,' + ratiobaropacity;
  575. ratiobarstr = '$&<br>\n\t\t\t<div class="right-icon likes-icon" align="right" style="width:' + ratiowidth.toString() + 'px; background:rgba\(' + ratioRGBA + '\)"><span style="opacity:' + ratiotextopacity + '">' + (ratio.toFixed(1)).toString() + '%</span></div>';
  576. elem = elem.replace(/open.*div>/, ratiobarstr);
  577. }
  578. elem = elem.replace(/height=\"150\"/, 'height="150" style="border:solid ' + borderthickness + 'px rgba\(' + likeRGB + ',' + borderopacity + '\)"');
  579. }
  580. }
  581. elems[i].innerHTML = elem;
  582. }
  583. }
  584. }
  585.  
  586. //// 視聴ページ用 ////
  587. function watchpagemanip(type) {
  588. // タイトル変更
  589. if (titlearrangeatwatchpage) {
  590. var dummy = document.body.getElementsByClassName('node-info');
  591. if (dummy !== null) {
  592. var nodeinfo = dummy[0].innerHTML;
  593. dummy = nodeinfo.match(/<h1 class="title">(.*)<\/h1>/);
  594. var title = dummy[1];
  595. // タイトル簡略化
  596. if(typeof(GM_getValue) === 'function'){
  597. GMdoStitle = GM_getValue('doStitle');
  598. }
  599. if (GMdoStitle) {title = simplifystr(title);}
  600. // 作者名取得
  601. dummy = nodeinfo.match(/class="username">(.*)<\/a>/);
  602. var username = dummy[1];
  603. // 日付取得
  604. var datestamp = nodeinfo.match(/20[0-9]{2}-[0-9]{2}-[0-9]{2}/);
  605. // ファイル名に使える感じに整形
  606. var newtitle = '\('+datestamp+'\)['+username+'] '+title;
  607. newtitle = filenamesafestr(newtitle);
  608.  
  609. // 以下のコメントアウト部分は作者の自分用楽ちん保存カスタマイズ。他の人が幸せになれるかは知らぬい
  610. /*
  611. // NGヒットした作品はファイル名に"(NG)"を追加する
  612. for (j = 0; j < NGWords.length; j++) {
  613. dummy = newtitle.match(NGWords[j]);
  614. if (dummy !== null) {
  615. newtitle += ' (NG)';
  616. j = NGWords.length;
  617. }
  618. }
  619. // ファイル名末尾に_360pを追加
  620. newtitle += '_360p';
  621. // 「ダウンロード」ボタンを押すと同時にクリップボードに整形ファイル名をコピー
  622. document.getElementById('download-button').onclick = function () {
  623. copytext(newtitle);
  624. };
  625. */
  626.  
  627. document.title = newtitle; // タイトル変更
  628. }
  629. }
  630. }
  631.  
  632. //// メイン関数 ////
  633. function main() {
  634. var currenturl = location.href;
  635. dummy = currenturl.match(/\.iwara\.tv\/videos\//);
  636. if (dummy !== null) { // 動画視聴ページ
  637. watchpagemanip('video');
  638. } else {
  639. dummy = currenturl.match(/\.iwara\.tv\/images\//);
  640. if (dummy !== null) { // 静画視聴ページ
  641. watchpagemanip('image');
  642. } else { // その他
  643. listmanip();
  644. }
  645. }
  646. }
  647.  
  648. //// ここから生スクリプト ////
  649. main();