hwm_clickable_links

Распознавание в тексте ссылок (by Demin)

  1. // ==UserScript==
  2. // @name hwm_clickable_links
  3. // @author Demin
  4. // @namespace Demin
  5. // @description Распознавание в тексте ссылок (by Demin)
  6. // @homepage https://gf.qytechs.cn/users/1602-demin
  7. // @icon http://i.imgur.com/LZJFLgt.png
  8. // @version 1.7
  9. // @encoding utf-8
  10. // @include http://www.heroeswm.ru/pl_info.php*
  11. // @include http://qrator.heroeswm.ru/pl_info.php*
  12. // @include http://178.248.235.15/pl_info.php*
  13. // @include http://www.lordswm.com/pl_info.php*
  14. // @include http://www.heroeswm.ru/forum_messages.php*
  15. // @include http://qrator.heroeswm.ru/forum_messages.php*
  16. // @include http://178.248.235.15/forum_messages.php*
  17. // @include http://www.lordswm.com/forum_messages.php*
  18. // @include http://www.heroeswm.ru/clan_info.php*
  19. // @include http://qrator.heroeswm.ru/clan_info.php*
  20. // @include http://178.248.235.15/clan_info.php*
  21. // @include http://www.lordswm.com/clan_info.php*
  22. // @grant GM_deleteValue
  23. // @grant GM_getValue
  24. // @grant GM_listValues
  25. // @grant GM_setValue
  26. // @grant GM_addStyle
  27. // @grant GM_log
  28. // @grant GM_openInTab
  29. // ==/UserScript==
  30.  
  31. // (c) 2015, demin ( http://www.heroeswm.ru/pl_info.php?id=15091 )
  32. // (c) 2009, ArtPetroff
  33.  
  34. (function() {
  35.  
  36. var version = '1.7';
  37.  
  38.  
  39. if (typeof GM_deleteValue != 'function') {
  40. this.GM_getValue=function (key,def) {return localStorage[key] || def;};
  41. this.GM_setValue=function (key,value) {return localStorage[key]=value;};
  42. this.GM_deleteValue=function (key) {return delete localStorage[key];};
  43. }
  44.  
  45.  
  46. var script_num = 8508;
  47. var script_name = "hwm_clickable_links: Распознавание в тексте ссылок (by Demin)";
  48. update_n(version,script_num,script_name);
  49.  
  50. var url_cur = location.href;
  51. var url = 'http://'+location.hostname+'/';
  52.  
  53.  
  54. if (url_cur.indexOf("pl_info.php") != -1) {
  55.  
  56. var flash_army = document.querySelectorAll("a[href^='pl_transfers.php?id']");
  57. if ( flash_army.length==0 ) return;
  58. flash_army = flash_army[flash_army.length-1];
  59. while ( flash_army.tagName != 'TABLE' ) { flash_army = flash_army.parentNode; }
  60. flash_army = flash_army.parentNode.childNodes[flash_army.parentNode.childNodes.length - 2];
  61. while ( flash_army.tagName != 'TD' ) { flash_army = flash_army.lastChild; }
  62. flash_army.innerHTML = replaceAll( flash_army.innerHTML );
  63.  
  64. } else if (url_cur.indexOf("forum_messages.php") != -1) {
  65.  
  66. var td_arr = document.getElementsByTagName('td');
  67. for (var i=0, td_arr_len=td_arr.length, td, attr; i<td_arr_len; i++) {
  68. td = td_arr[i];
  69. attr = td.getAttribute('style');
  70. if (attr == "color: #000000; padding: 5px; font-size: 13px;") {
  71. td.innerHTML = replaceAll( td.innerHTML );
  72. }
  73. }
  74.  
  75. } else if (url_cur.indexOf("clan_info.php") != -1) {
  76.  
  77. var add_table_parent = document.querySelector("a[href^='clan_log.php?id']");
  78. while ( add_table_parent.tagName != 'TABLE' ) { add_table_parent = add_table_parent.parentNode; }
  79. while ( add_table_parent.tagName != 'TD' ) { add_table_parent = add_table_parent.lastChild; }
  80. add_table_parent.innerHTML = replaceAll( add_table_parent.innerHTML );
  81. }
  82.  
  83. function replaceAll(lines) {
  84. if ( lines.match("http") ) {
  85. lines = lines.split('<br>')
  86. for (var i = 0, i_len=lines.length; i < i_len; i++) {
  87. var words = lines[i].split(' ');
  88. for (var j = 0, j_len=words.length; j < j_len; j++) {
  89. words[j] = replace(words[j]);
  90. }
  91. lines[i] = words.join(' ');
  92. }
  93. return lines.join('<br>');
  94. }
  95. return lines;
  96. }
  97.  
  98. function replace(a) {
  99. var b = (a.indexOf("color=") == 0);
  100. var i = a.indexOf("http");
  101. if (i > 1 && !b) {return a;}
  102. if (i != -1) {
  103. // return a.replace(/((?:\w+:\/\/|www\.)[\w\.\/%\d&\?#+=-]+)/i, '<a href="$1">$1</a>');
  104. var temp_a = /((?:\w+:\/\/|www\.)[^<>]+)/i.exec( a );
  105. if ( temp_a ) {
  106. temp_a = temp_a[1];
  107. while ( /[^\w\/#&$=\+]/.exec( temp_a.slice(-1) ) ) { temp_a = temp_a.slice(0, -1); }
  108. return a.replace(temp_a, '<a href="'+temp_a+'">'+temp_a+'</a>');
  109. }
  110. }
  111. return a;
  112. }
  113.  
  114. function $(id) { return document.querySelector("#"+id); }
  115.  
  116. function addEvent(elem, evType, fn) {
  117. if (elem.addEventListener) {
  118. elem.addEventListener(evType, fn, false);
  119. }
  120. else if (elem.attachEvent) {
  121. elem.attachEvent("on" + evType, fn);
  122. }
  123. else {
  124. elem["on" + evType] = fn;
  125. }
  126. }
  127.  
  128. function update_n(a,b,c,d,e){if(e){e++}else{e=1;d=(Number(GM_getValue(b+'_update_script_last2','0'))||0)}if(e>3){return}var f=new Date().getTime();var g=document.querySelector('#update_demin_script2');if(g){if((d+86400000<f)||(d>f)){g=g.innerHTML;if(/100000=1.1/.exec(g)){var h=new RegExp(b+'=(\\d+\\.\\d+)=(\\d+)').exec(g);var i=/url7=([^%]+)/.exec(g);if(a&&h&&i){if(Number(h[1])>Number(a))setTimeout(function(){if(confirm('\u0414\u043E\u0441\u0442\u0443\u043F\u043D\u043E \u043E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u0438\u0435 \u0441\u043A\u0440\u0438\u043F\u0442\u0430: "'+c+'".\n\u0423\u0441\u0442\u0430\u043D\u043E\u0432\u0438\u0442\u044C \u043E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u043D\u0443\u044E \u0432\u0435\u0440\u0441\u0438\u044E \u0441\u0435\u0439\u0447\u0430\u0441?\n\nThere is an update available for the script: "'+c+'".\nWould you like install the script now?')){if(typeof GM_openInTab=='function'){GM_openInTab(i[1].replace(/\s/g,'')+h[2])}else{window.open(i[1].replace(/\s/g,'')+h[2],'_blank')}}},500)}GM_setValue(b+'_update_script_last2',''+f)}else{setTimeout(function(){update_n(a,b,c,d,e)},1000)}}}else{var j=document.querySelector('body');if(j){var k=GM_getValue(b+'_update_script_array2');if(e==1&&((d+86400000<f)||(d>f)||!k)){if(k){GM_deleteValue(b+'_update_script_array2')}setTimeout(function(){update_n(a,b,c,d,e)},1000);return}var l=document.createElement('div');l.id='update_demin_script2';l.setAttribute('style','position: absolute; width: 0px; height: 0px; top: 0px; left: 0px; display: none;');l.innerHTML='';j.appendChild(l);if((d+86400000<f)||(d>f)||!k){var m=new XMLHttpRequest();m.open('GET','photo_pl_photos.php?aid=1777'+'&rand='+(Math.random()*100),true);m.onreadystatechange=function(){update(m,a,b,c,d,e)};m.send(null)}else{document.querySelector('#update_demin_script2').innerHTML=k;setTimeout(function(){update_n(a,b,c,d,e)},10)}}}}function update(a,b,c,d,e,f){if(a.readyState==4&&a.status==200){a=a.responseText;var g=/(\d+=\d+\.\d+(=\d+)*)/g;var h='';var i=/(url7=[^%]+\%)/.exec(a);if(i){h+=i[1]}while((i=g.exec(a))!=null){if(h.indexOf(i[1])==-1){h+=' '+i[1]}};GM_setValue(c+'_update_script_array2',''+h);var j=document.querySelector('#update_demin_script2');if(j){j.innerHTML=h;setTimeout(function(){update_n(b,c,d,e,f)},10)}}}
  129.  
  130. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址