From 3cc36522757b22639e5b4c2863f538ff0ecb2b19 Mon Sep 17 00:00:00 2001 From: Ray Date: Sun, 15 Dec 2024 18:40:40 +0000 Subject: [PATCH] Added tab-content-service base class --- content.js | 56 ++- popup.dist.js | 2 +- popup.html | 192 +++++++-- src/src/popup.js | 12 +- src/src/popup/a-content-service.js | 280 +++++++++++++ src/src/popup/acontent-service.js | 502 ------------------------ src/src/popup/content-service.js | 219 +++++++++-- src/src/popup/img-content-service.js | 233 +++++++++++ src/src/popup/imgcontent-service.js | 444 --------------------- src/src/popup/meta-content-service.js | 188 +++++++++ src/src/popup/popup-service.js | 20 +- src/src/popup/script-content-service.js | 211 ++++++++++ src/src/popup/tab-content-service.js | 129 ++++++ 13 files changed, 1465 insertions(+), 1023 deletions(-) create mode 100644 src/src/popup/a-content-service.js delete mode 100644 src/src/popup/acontent-service.js create mode 100644 src/src/popup/img-content-service.js delete mode 100644 src/src/popup/imgcontent-service.js create mode 100644 src/src/popup/meta-content-service.js create mode 100644 src/src/popup/script-content-service.js create mode 100644 src/src/popup/tab-content-service.js diff --git a/content.js b/content.js index 6ca5e6c..14cd0bd 100644 --- a/content.js +++ b/content.js @@ -2,7 +2,8 @@ class MessagingService { async GetHyperlinkNodes(sender, callback) { const a = this; - const nodes = await document.body.getElementsByTagName("a"); + const nodes = await document.querySelectorAll("a"); + let result = []; for (let i=0; i JSON.stringify(item) === JSON.stringify(result[i])).length; - // } - await callback(result); } async GetImageNodes(sender, callback) { const a = this; - const nodes = await document.body.getElementsByTagName("img"); + const nodes = await document.querySelectorAll("img"); + let result = []; for (let i=0; i(()=>{var e={645:function(e){var t;t=()=>(()=>{var e={814:()=>{Array.isEmpty=function(e){return"array"!=Object.getDataType(e)||e.length<=0},Array.toFlatten=function(e,t,n){for(let r=0;r0&&Array.toFlatten(e[r][t],t,n)},Array.prototype.addRange=function(e){return null==e||e.forEach((e=>{this.push(e)})),this},Array.prototype.all=function(e,t){for(let n=0;n{t+=this.count(e.propName,e.value)})),t},Array.prototype.create=function(e,t){let n=[];for(let r=0;rt===n.findIndex((t=>JSON.stringify(t)===JSON.stringify(e)))))},Array.prototype.flatten=function(e){let t=[];return Array.toFlatten(this,e,t),t},Array.prototype.get=function(e){return e<0||e>=this.length?"":this[e]},Array.prototype.index=function(e,t){const n=this.indexes(e,t);return n.length<=0?null:n[0]},Array.prototype.indexes=function(e,t){let n=[];for(let r=0;r=this.length?this.push(t):this.splice(e,0,t),this},Array.prototype.joinIfNotNullOrWhitespace=function(e){let t="";for(let n=0;nn[e]?1:0})),this},Array.prototype.orderByDesc=function(e){return this.sort((function(t,n){return t[e]n[e]?-1:0})),this},Array.prototype.remove=function(e){let t=[];for(let n=0;n=0;e--)this.removeAt(t[e]);return this},Array.prototype.removeAt=function(e){return e<0||e>=this.length||this.splice(e,1),this},Array.prototype.removeRange=function(e){for(let t=0;t{t=t.select(e.propName,e.value)})),t},Array.prototype.toList=function(e){let t=[];return this.forEach((n=>{null!=typeof n[e]&&t.push(n[e])})),t},Array.prototype.sortTree=function(e,t){this.orderBy(t);for(let n=0;n{Boolean.isFalse=function(e){return!!String.isNullOrUndefined(e)||e.toString().containsCI("false","f","y","0","x")},Boolean.isTrue=function(e){return!String.isNullOrUndefined(e)&&e.toString().containsCI("true","t","n","1","o")},Boolean.ifTrue=function(e,t,n){return Boolean.isTrue(e)?t:n}},579:()=>{Date.addDays=function(e,t){let n=new Date(e);return n.addDays(t),n},Date.addMonths=function(e,t){let n=new Date(e);return n.addMonths(t),n},Date.addYears=function(e,t){let n=new Date(e);return n.addYears(t),n},Date.max=function(e,t){return null==e?t:null==t?e:new Date(e)<=new Date(t)?new Date(t):new Date(e)},Date.min=function(e,t){return null==e?t:null==t?e:new Date(e)<=new Date(t)?new Date(e):new Date(t)},Date.diffDays=function(e,t){return Math.ceil((new Date(t).getTime()-new Date(e).getTime())/864e5)},Date.today=function(){let e=new Date;return e.setHours(0),e.setMinutes(0),e.setSeconds(0),e.setMilliseconds(0),e},Date.prototype.addDays=function(e){this.setDate(this.getDate()+parseInt(e))},Date.prototype.addMonths=function(e){this.setMonth(this.getMonth()+parseInt(e))},Date.prototype.addYears=function(e){this.setFullYear(this.getFullYear()+parseInt(e))},Date.prototype.toCString=function(e){let t=e;return t=t.replace("fffffff",this.getMilliseconds().toString().padStart(7,"0")),t=t.replace("ffffff",this.getMilliseconds().toString().padStart(6,"0")),t=t.replace("fffff",this.getMilliseconds().toString().padStart(5,"0")),t=t.replace("yyyy",this.getFullYear().toString().padStart(4,"0")),t=t.replace("MMMM","{1}"),t=t.replace("dddd","{2}"),t=t.replace("ffff",this.getMilliseconds().toString().padStart(4,"0")),t=t.replace("yyy",this.getFullYear().toString().padStart(3,"0")),t=t.replace("MMM","{3}"),t=t.replace("ddd","{4}"),t=t.replace("fff",this.getMilliseconds().toString().padStart(3,"0")),t=t.replace("zzz",""),t=t.replace("yy",this.getFullYear().toString().slice(-2)),t=t.replace("MM",(this.getMonth()+1).toString().padStart(2,"0")),t=t.replace("dd",this.getDate().toString().padStart(2,"0")),t=t.replace("HH",this.getHours().toString().padStart(2,"0")),t=t.replace("hh",(this.getHours()>12?this.getHours()-12:this.getHours()).toString().padStart(2,"0")),t=t.replace("mm",this.getMinutes().toString().padStart(2,"0")),t=t.replace("ss",this.getSeconds().toString().padStart(2,"0")),t=t.replace("ff",this.getMilliseconds().toString().padStart(2,"0")),t=t.replace("tt","{5}"),t=t.replace("zz",""),t=t.replace("y",this.getFullYear().toString()),t=t.replace("M",(this.getMonth()+1).toString()),t=t.replace("d",this.getDate().toString()),t=t.replace("H",this.getHours().toString()),t=t.replace("h",(this.getHours()>12?this.getHours()-12:this.getHours()).toString()),t=t.replace("m",this.getMinutes().toString()),t=t.replace("s",this.getSeconds().toString()),t=t.replace("z",""),t=t.replace("t","{6}"),t=t.replace("Z",""),t=t.replace("{1}",this.toLocaleString("default",{month:"long"})),t=t.replace("{2}",this.toLocaleString("default",{weekday:"long"})),t=t.replace("{3}",this.toLocaleString("default",{month:"short"})),t=t.replace("{4}",this.toLocaleString("default",{weekday:"short"})),t=t.replace("{5}",this.getHours()>=12?"PM":"AM"),t=t.replace("{6}",this.getHours()>=12?"P":"A"),t}},874:()=>{Document.ready=async function(e){!async function(){"loading"!==document.readyState?e():document.addEventListener("DOMContentLoaded",(function(){e()}))}()},Document.getWidth=function(e){return null==e||void 0===e?0:e.offsetWidth||e.innerWidth||e.clientWidth},Document.getHeight=function(e){return null==e||void 0===e?0:e.offsetHeight||e.innerHeight||e.clientHeight},Document.appendHtml=function(e,t){const n=document.createElement(t);e.appendChild(n)},Document.addClass=function(e,t){e.classList.contains(t)||e.classList.add(t)},Document.removeClass=function(e,t){e.classList.contains(t)&&e.classList.remove(t)}},705:()=>{Math.randomN=function(e,t){return e=Math.ceil(e),t=Math.floor(t),Math.floor(Math.random()*(t-e)+e)},Math.average=function(e){let t=0;return e.forEach((e=>{t+=parseFloat(e)})),t/e.length},Math.avg=function(...e){let t=0;return e.forEach((e=>{t+=parseFloat(e)})),t/e.length},Math.half=function(e){return e/2}},428:()=>{Object.isNullOrUndefined=function(e){return void 0===e||null==e},Object.getDataType=function(e){return String.isNullOrUndefined(e)?"null":"object"==typeof e?Array.isArray(e)?"array":"object":typeof e}},930:()=>{String.isNullOrUndefined=function(e){return void 0===e||null==e},String.isNullOrWhitespace=function(e){return!!String.isNullOrUndefined(e)||("string"==typeof e?e.trim().length<=0:e.toString().trim().length<=0)},String.joinIfNotNullOrWhitespace=function(e,...t){let n="";for(let r=0;r$1")},String.prototype.toTitleCase=function(){let e=this;return e=e.replace(/([A-Z]{1})/g," $1"),e=e.trim(),e=e.charAt(0).toUpperCase()+e.substr(1),e},String.prototype.getFilename=function(){return this.substring(this.lastIndexOf("/")+1)}},323:()=>{Window.goToTop=function(){Window.scrollTo(0,0)},Window.fragment={get:function(){if(!window.location.hash)return null;const e=window.location.hash.indexOf("?");return e<0?window.location.hash.substring(1):window.location.hash.substring(1,e)},getQuery:function(){if(!window.location.hash)return null;let e=window.location.hash;const t=e.indexOf("?");if(t<0)return null;e=hasQueryString.substring(t+1);const n=new URLSearchParams(e),r={};for(const[e,t]of n.entries())r[e]=t;return r},clear:function(){location.hash="",history.replaceState("","",location.pathname)}}}},t={};function n(r){var o=t[r];if(void 0!==o)return o.exports;var i=t[r]={exports:{}};return e[r](i,i.exports,n),i.exports}n.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return n.d(t,{a:t}),t},n.d=(e,t)=>{for(var r in t)n.o(t,r)&&!n.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},n.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),n.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var r={};return(()=>{"use strict";n.r(r),n(814),n(523),n(579),n(874),n(705),n(428),n(930),n(323)})(),r})(),e.exports=t()}},t={};function n(r){var o=t[r];if(void 0!==o)return o.exports;var i=t[r]={exports:{}};return e[r].call(i.exports,i,i.exports,n),i.exports}return(()=>{"use strict";n(645);const e=class{GenerateCheckBox(e,t,n){let r="";return r+='
',r+='",r+='",r+="
",r}GenerateCols(...e){let t="";for(let n=0;n'+e[n]+"";return t}GenerateCSVLine(e,...t){1===t.length&&"array"==Object.getDataType(t[0])&&(t=t[0]);let n="";for(let r=0;r0&&(n+=e),n+=t[r];return n}GenerateRadioBox(e,t,n,r,o){let i="";return i+='
',i+='",i+='",i+="
",i}GenerateRow(...e){const t=this;1===e.length&&"array"==Object.getDataType(e[0])&&(e=e[0]);let n="";for(let r=0;r"+n+""}GenerateRowCell(e){return''}SetHtml(e,t){null!=e&&(e.innerHTML=t)}},t=new class{async SendMessage(e,t){chrome.tabs.query({active:!0,currentWindow:!0},(function(n){chrome.tabs.sendMessage(n[0].id,{event:e},t)}))}async GetHyperlinks(){const e=this;return new Promise((function(t){e.SendMessage("GetHyperlinkNodes",(async function(e){t(e.copy())}))}))}async GetImages(){const e=this;return new Promise((function(t){e.SendMessage("GetImageNodes",(async function(e){t(e.copy())}))}))}async GetLocation(){const e=this;return new Promise((function(t){e.SendMessage("GetLocation",(function(e){t(e)}))}))}},r=new class extends e{#e=null;#t=null;constructor(e){super(),this.#t=e}InitialiseComponents(){const e=this;e.Clear(),e.#n(),e.#r(),e.Button1.addEventListener("click",(async function(t){e.Button2.disabled=!0,e.TextBox1.value="",await e.Search(),e.Button2.disabled=!1})),e.Button2.addEventListener("click",(async function(t){e.Button2.disabled=!0,await e.Search(),e.Button2.disabled=!1}))}#n(){const e=this;let t="";t+=e.GenerateCheckBox(1,"Show Anchor as HTML",!1),t+=e.GenerateCheckBox(4,"Resolve Relative URL",!1);let n="";n+=e.GenerateCheckBox(3,"Sort By Anchor Text",!0),n+=e.GenerateCheckBox(2,"Trim Anchor Text",!0);let r=e.GenerateCols(t,n);e.SetHtml(e.Panel1,r)}#r(){const e=this;let t="";t+=e.GenerateCheckBox(12,"Hide External Links",!0),t+=e.GenerateCheckBox(5,"Hide Duplicates",!0),t+=e.GenerateCheckBox(14,"Hide Blank Anchors",!0),t+=e.GenerateCheckBox(15,"Hide Blank Links",!0),t+=e.GenerateCheckBox(11,"Hide Fragments",!0),t+=e.GenerateCheckBox(13,"Hide Mailto/Tel",!0),t+=e.GenerateCheckBox(16,"Hide Javascript",!0);let n="";n+=e.GenerateCheckBox(6,"Show Title",!0),n+=e.GenerateCheckBox(7,"Show Target",!1),n+=e.GenerateCheckBox(8,"Show Rel",!1),n+=e.GenerateCheckBox(9,"Show Type",!1),n+=e.GenerateCheckBox(10,"Show Count",!1);let r=e.GenerateCols(t,n);e.SetHtml(e.Panel2,r)}get Button1(){return null==this.Container?null:this.Container.querySelectorAll("button")[0]}get Button2(){return null==this.Container?null:this.Container.querySelectorAll("button")[1]}get Container(){const e=this;return null==e.#e&&(e.#e=document.getElementById("nav-hyperlinks")),e.#e}get Label1(){return null==this.Container?null:this.Container.querySelectorAll("[role='label']")[0]}get MemoBox1(){return null==this.Container?null:this.Container.querySelectorAll("textarea")[0]}get Panel1(){return null==this.Container?null:this.Container.querySelectorAll("div[role='options']")[0]}get Panel2(){return null==this.Container?null:this.Container.querySelectorAll("div[role='filters']")[0]}get Table1(){return null==this.Container?null:this.Container.querySelectorAll("table")[0]}get TextBox1(){return null==this.Container?null:this.Container.querySelectorAll("input[role='textbox']")[0]}Clear(){const e=this;e.Table1.style.display="none",e.MemoBox1.style.display="none",e.SetHtml(e.Panel1,""),e.SetHtml(e.Panel2,"")}async Search(){const e=this;e.Label1.innerText="",e.Table1.style.display="none",e.MemoBox1.style.display="none";const t=await e.#t.GetHyperlinks(),n=t.length,r=await e.#o(t.copy());switch(r.length==n?e.Label1.innerText="Showing "+n+" result"+(1==n?"":"s"):e.Label1.innerText="Showing "+r.length+" of "+n+" result"+(1==n?"":"s"),e.#i(2)){case"table":e.#l(r);break;case"csv":e.#a(r);break;case"links":e.#s(r)}}async#o(e){const t=this,n=await t.#t.GetLocation(),r=new URL(n).hostname;let o=[];for(let i=0;iJSON.stringify(e)===JSON.stringify(o[t]))).length;e.push(n)}for(let t=0;t"+t[r].name+"");return n}#c(e){if(null==this.Container)return!1;const t=this.Container.querySelectorAll("input[name='checkbox"+e+"']");return!(t.length<=0)&&t[0].checked}#i(e){if(null==this.Container)return"";const t=this.Container.querySelectorAll("select[name='comboBox"+e+"']");return t.length<=0?"":t[0].value}#h(e){if(null==this.Container)return"";const t=this.Container.querySelectorAll("input[name='radioGroup"+e+"']:checked");return t.length<=0?"":t[0].value}#l(e){const t=this,n=t.Table1.querySelectorAll("thead")[0],r=t.Table1.querySelectorAll("tbody")[0];n.innerHTML="",r.innerHTML="",t.Table1.style.display="table",n.innerHTML=""+t.#u()+"";for(let n=0;nJSON.stringify(e)===JSON.stringify(o[t]))).length;e.push(n)}for(let t=0;t"+t[r].name+"");return n}#c(e){if(null==this.Container)return!1;const t=this.Container.querySelectorAll("input[name='checkbox"+e+"']");return!(t.length<=0)&&t[0].checked}#i(e){if(null==this.Container)return"";const t=this.Container.querySelectorAll("select[name='comboBox"+e+"']");return t.length<=0?"":t[0].value}#l(e){const t=this,n=t.Table1.querySelectorAll("thead")[0],r=t.Table1.querySelectorAll("tbody")[0];n.innerHTML="",r.innerHTML="",t.Table1.style.display="table",n.innerHTML=""+t.#u()+"";for(let n=0;n(()=>{var e={645:function(e){var t;t=()=>(()=>{var e={814:()=>{Array.isEmpty=function(e){return"array"!=Object.getDataType(e)||e.length<=0},Array.toFlatten=function(e,t,n){for(let r=0;r0&&Array.toFlatten(e[r][t],t,n)},Array.prototype.addRange=function(e){return null==e||e.forEach((e=>{this.push(e)})),this},Array.prototype.all=function(e,t){for(let n=0;n{t+=this.count(e.propName,e.value)})),t},Array.prototype.create=function(e,t){let n=[];for(let r=0;rt===n.findIndex((t=>JSON.stringify(t)===JSON.stringify(e)))))},Array.prototype.flatten=function(e){let t=[];return Array.toFlatten(this,e,t),t},Array.prototype.get=function(e){return e<0||e>=this.length?"":this[e]},Array.prototype.index=function(e,t){const n=this.indexes(e,t);return n.length<=0?null:n[0]},Array.prototype.indexes=function(e,t){let n=[];for(let r=0;r=this.length?this.push(t):this.splice(e,0,t),this},Array.prototype.joinIfNotNullOrWhitespace=function(e){let t="";for(let n=0;nn[e]?1:0})),this},Array.prototype.orderByDesc=function(e){return this.sort((function(t,n){return t[e]n[e]?-1:0})),this},Array.prototype.remove=function(e){let t=[];for(let n=0;n=0;e--)this.removeAt(t[e]);return this},Array.prototype.removeAt=function(e){return e<0||e>=this.length||this.splice(e,1),this},Array.prototype.removeRange=function(e){for(let t=0;t{t=t.select(e.propName,e.value)})),t},Array.prototype.toList=function(e){let t=[];return this.forEach((n=>{null!=typeof n[e]&&t.push(n[e])})),t},Array.prototype.sortTree=function(e,t){this.orderBy(t);for(let n=0;n{Boolean.isFalse=function(e){return!!String.isNullOrUndefined(e)||e.toString().containsCI("false","f","y","0","x")},Boolean.isTrue=function(e){return!String.isNullOrUndefined(e)&&e.toString().containsCI("true","t","n","1","o")},Boolean.ifTrue=function(e,t,n){return Boolean.isTrue(e)?t:n}},579:()=>{Date.addDays=function(e,t){let n=new Date(e);return n.addDays(t),n},Date.addMonths=function(e,t){let n=new Date(e);return n.addMonths(t),n},Date.addYears=function(e,t){let n=new Date(e);return n.addYears(t),n},Date.max=function(e,t){return null==e?t:null==t?e:new Date(e)<=new Date(t)?new Date(t):new Date(e)},Date.min=function(e,t){return null==e?t:null==t?e:new Date(e)<=new Date(t)?new Date(e):new Date(t)},Date.diffDays=function(e,t){return Math.ceil((new Date(t).getTime()-new Date(e).getTime())/864e5)},Date.today=function(){let e=new Date;return e.setHours(0),e.setMinutes(0),e.setSeconds(0),e.setMilliseconds(0),e},Date.prototype.addDays=function(e){this.setDate(this.getDate()+parseInt(e))},Date.prototype.addMonths=function(e){this.setMonth(this.getMonth()+parseInt(e))},Date.prototype.addYears=function(e){this.setFullYear(this.getFullYear()+parseInt(e))},Date.prototype.toCString=function(e){let t=e;return t=t.replace("fffffff",this.getMilliseconds().toString().padStart(7,"0")),t=t.replace("ffffff",this.getMilliseconds().toString().padStart(6,"0")),t=t.replace("fffff",this.getMilliseconds().toString().padStart(5,"0")),t=t.replace("yyyy",this.getFullYear().toString().padStart(4,"0")),t=t.replace("MMMM","{1}"),t=t.replace("dddd","{2}"),t=t.replace("ffff",this.getMilliseconds().toString().padStart(4,"0")),t=t.replace("yyy",this.getFullYear().toString().padStart(3,"0")),t=t.replace("MMM","{3}"),t=t.replace("ddd","{4}"),t=t.replace("fff",this.getMilliseconds().toString().padStart(3,"0")),t=t.replace("zzz",""),t=t.replace("yy",this.getFullYear().toString().slice(-2)),t=t.replace("MM",(this.getMonth()+1).toString().padStart(2,"0")),t=t.replace("dd",this.getDate().toString().padStart(2,"0")),t=t.replace("HH",this.getHours().toString().padStart(2,"0")),t=t.replace("hh",(this.getHours()>12?this.getHours()-12:this.getHours()).toString().padStart(2,"0")),t=t.replace("mm",this.getMinutes().toString().padStart(2,"0")),t=t.replace("ss",this.getSeconds().toString().padStart(2,"0")),t=t.replace("ff",this.getMilliseconds().toString().padStart(2,"0")),t=t.replace("tt","{5}"),t=t.replace("zz",""),t=t.replace("y",this.getFullYear().toString()),t=t.replace("M",(this.getMonth()+1).toString()),t=t.replace("d",this.getDate().toString()),t=t.replace("H",this.getHours().toString()),t=t.replace("h",(this.getHours()>12?this.getHours()-12:this.getHours()).toString()),t=t.replace("m",this.getMinutes().toString()),t=t.replace("s",this.getSeconds().toString()),t=t.replace("z",""),t=t.replace("t","{6}"),t=t.replace("Z",""),t=t.replace("{1}",this.toLocaleString("default",{month:"long"})),t=t.replace("{2}",this.toLocaleString("default",{weekday:"long"})),t=t.replace("{3}",this.toLocaleString("default",{month:"short"})),t=t.replace("{4}",this.toLocaleString("default",{weekday:"short"})),t=t.replace("{5}",this.getHours()>=12?"PM":"AM"),t=t.replace("{6}",this.getHours()>=12?"P":"A"),t}},874:()=>{Document.ready=async function(e){!async function(){"loading"!==document.readyState?e():document.addEventListener("DOMContentLoaded",(function(){e()}))}()},Document.getWidth=function(e){return null==e||void 0===e?0:e.offsetWidth||e.innerWidth||e.clientWidth},Document.getHeight=function(e){return null==e||void 0===e?0:e.offsetHeight||e.innerHeight||e.clientHeight},Document.appendHtml=function(e,t){const n=document.createElement(t);e.appendChild(n)},Document.addClass=function(e,t){e.classList.contains(t)||e.classList.add(t)},Document.removeClass=function(e,t){e.classList.contains(t)&&e.classList.remove(t)}},705:()=>{Math.randomN=function(e,t){return e=Math.ceil(e),t=Math.floor(t),Math.floor(Math.random()*(t-e)+e)},Math.average=function(e){let t=0;return e.forEach((e=>{t+=parseFloat(e)})),t/e.length},Math.avg=function(...e){let t=0;return e.forEach((e=>{t+=parseFloat(e)})),t/e.length},Math.half=function(e){return e/2}},428:()=>{Object.isNullOrUndefined=function(e){return void 0===e||null==e},Object.getDataType=function(e){return String.isNullOrUndefined(e)?"null":"object"==typeof e?Array.isArray(e)?"array":"object":typeof e}},930:()=>{String.isNullOrUndefined=function(e){return void 0===e||null==e},String.isNullOrWhitespace=function(e){return!!String.isNullOrUndefined(e)||("string"==typeof e?e.trim().length<=0:e.toString().trim().length<=0)},String.joinIfNotNullOrWhitespace=function(e,...t){let n="";for(let r=0;r$1")},String.prototype.toTitleCase=function(){let e=this;return e=e.replace(/([A-Z]{1})/g," $1"),e=e.trim(),e=e.charAt(0).toUpperCase()+e.substr(1),e},String.prototype.getFilename=function(){return this.substring(this.lastIndexOf("/")+1)}},323:()=>{Window.goToTop=function(){Window.scrollTo(0,0)},Window.fragment={get:function(){if(!window.location.hash)return null;const e=window.location.hash.indexOf("?");return e<0?window.location.hash.substring(1):window.location.hash.substring(1,e)},getQuery:function(){if(!window.location.hash)return null;let e=window.location.hash;const t=e.indexOf("?");if(t<0)return null;e=hasQueryString.substring(t+1);const n=new URLSearchParams(e),r={};for(const[e,t]of n.entries())r[e]=t;return r},clear:function(){location.hash="",history.replaceState("","",location.pathname)}}}},t={};function n(r){var o=t[r];if(void 0!==o)return o.exports;var i=t[r]={exports:{}};return e[r](i,i.exports,n),i.exports}n.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return n.d(t,{a:t}),t},n.d=(e,t)=>{for(var r in t)n.o(t,r)&&!n.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},n.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),n.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var r={};return(()=>{"use strict";n.r(r),n(814),n(523),n(579),n(874),n(705),n(428),n(930),n(323)})(),r})(),e.exports=t()}},t={};function n(r){var o=t[r];if(void 0!==o)return o.exports;var i=t[r]={exports:{}};return e[r].call(i.exports,i,i.exports,n),i.exports}return(()=>{"use strict";n(645);const e=class{_popupService=null;_containerId=null;constructor(e){this._popupService=e}get Container(){return document.getElementById(this._containerId)}GenerateCheckBox(e,t,n){const r="checkbox"+Math.randomN(100001,999999);let o="";return o+='
',o+='",o+='",o+="
",o}GenerateCSVLine(e,...t){1===t.length&&"array"==Object.getDataType(t[0])&&(t=t[0]);let n="";for(let r=0;r0&&(n+=e),n+=t[r];return n}GenerateRow(...e){const t=this;1===e.length&&"array"==Object.getDataType(e[0])&&(e=e[0]);let n="";for(let r=0;r"+n+""}_generateCheckBoxPanel(e,t){const n=this;let r="",o="";for(let t=0;t'}_generateTable(){let e="";return e+='',e+="",e+="",e+="
",'
'}_generateTableCell(e){return''}_generateTableHeader(e,t){const n=this;let r="";for(let t=0;t"+e[t]+"";for(let e=0;e"+t[e].name+"");return r}_getButton(e){return this.#t("button",e)}_getCheckBox(e){const t="checkbox"+e,n=this.#t("input[type='checkbox'][name='"+t+"']",1);return null!=n&&n.checked}_getComboBox(e){const t=this.#t("select",e);return null==t?"":t.value}_getLabel(e){return this.#t("[role='label']",e)}_getPanel(e,t){return this.#t("div[role='"+e+"']",t)}_getTextBox(e){return this.#t("input[type='text']",e)}_setHtml(e,t){null!=e&&(e.innerHTML=t)}#e(...e){let t="";for(let n=0;n'+e[n]+"";return t}#t(e,t){if(null==this.Container)return null;const n=this.Container.querySelectorAll(e);return n.length<=0||n.length>t?null:n[t-1]}},t=class extends e{_button1=null;_button2=null;_label1=null;_panel1=null;_panel2=null;_panel3=null;_textBox1=null;_optionsCol1=[];_optionsCol2=[];_filtersCol1=[];_filtersCol2=[];constructor(e){super(e)}InitialiseComponents(){const e=this,t=e.Container.querySelectorAll("button");e._button1=t[0],e._button2=t[1],e._label1=e._getLabel(1),e._panel1=e._getPanel("options",1),e._panel2=e._getPanel("filters",1),e._panel3=e._getPanel("results",1),e._textBox1=e._getTextBox(1),e.Clear(!0);const n=e._generateCheckBoxPanel(e._optionsCol1,e._optionsCol2);e._setHtml(e._panel1,n);const r=e._generateCheckBoxPanel(e._filtersCol1,e._filtersCol2);e._setHtml(e._panel2,r),e._button1.addEventListener("click",(async function(t){e._button2.disabled=!0,e._textBox1.value="",await e.Search(),e._button2.disabled=!1})),e._button2.addEventListener("click",(async function(t){e._button2.disabled=!0,await e.Search(),e._button2.disabled=!1}))}Clear(e){const t=this;t._label1.innerText="",Boolean.isTrue(e)&&(t._setHtml(t._panel1,""),t._setHtml(t._panel2,"")),t._setHtml(t._panel3,"")}async Search(){const e=this,t=await e._retrieveResult(),n=t.length,r=await e._filterResult(t.copy());switch(r.length==n?e._label1.innerText="Showing "+n+" result"+(1==n?"":"s"):e._label1.innerText="Showing "+r.length+" of "+n+" result"+(1==n?"":"s"),e._getComboBox(2)){case"table":e._renderTable(r);break;case"csv":e._renderCSV(r);break;case"links":e._renderLinks(r)}}async _retrieveResult(){return[]}async _filterResult(e){return e}_renderTable(e){}_renderCSV(e){}_renderLinks(e){}},r=new class{async SendMessage(e,t){chrome.tabs.query({active:!0,currentWindow:!0},(function(n){chrome.tabs.sendMessage(n[0].id,{event:e},t)}))}async GetHyperlinks(){const e=this;return new Promise((function(t){e.SendMessage("GetHyperlinkNodes",(async function(e){t(e.copy())}))}))}async GetImages(){const e=this;return new Promise((function(t){e.SendMessage("GetImageNodes",(async function(e){t(e.copy())}))}))}async GetScripts(){const e=this;return new Promise((function(t){e.SendMessage("GetScriptNodes",(async function(e){t(e.copy())}))}))}async GetLocation(){const e=this;return new Promise((function(t){e.SendMessage("GetLocation",(function(e){t(e)}))}))}async GetMetas(){const e=this;return new Promise((function(t){e.SendMessage("GetMetaNodes",(async function(e){t(e.copy())}))}))}},o=new class extends t{constructor(e){super(e);const t=this;t._containerId="nav-hyperlinks",t._optionsCol1=[{id:1,text:"Show Anchor as HTML",checked:!1},{id:4,text:"Resolve Relative URL",checked:!1}],t._optionsCol2=[{id:3,text:"Sort By Anchor Text",checked:!0},{id:2,text:"Trim Anchor Text",checked:!0}],t._filtersCol1=[{id:12,text:"Hide External Links",checked:!0},{id:5,text:"Hide Duplicates",checked:!0},{id:14,text:"Hide Blank Anchors",checked:!0},{id:15,text:"Hide Blank Links",checked:!0},{id:11,text:"Hide Fragments",checked:!0},{id:13,text:"Hide Mailto/Tel",checked:!0},{id:16,text:"Hide Javascript",checked:!0}],t._filtersCol2=[{id:6,text:"Show Title",checked:!0},{id:7,text:"Show Target",checked:!1},{id:8,text:"Show Rel",checked:!1},{id:9,text:"Show Type",checked:!1},{id:10,text:"Show Count",checked:!1}]}async _retrieveResult(){return await this._popupService.GetHyperlinks()}async _filterResult(e){const t=this,n=await t._popupService.GetLocation(),r=new URL(n).hostname;let o=[];for(let i=0;iJSON.stringify(e)===JSON.stringify(o[t]))).length;e.push(n)}for(let t=0;t"+t.#n()+"";for(let n=0;nJSON.stringify(e)===JSON.stringify(o[t]))).length;e.push(n)}for(let t=0;t"+t.#n()+"";for(let n=0;nJSON.stringify(e)===JSON.stringify(o[t]))).length;e.push(n)}for(let t=0;t"+t.#n()+"";for(let n=0;nJSON.stringify(e)===JSON.stringify(n[t]))).length;e.push(r)}for(let t=0;t"+t.#n()+"";for(let n=0;nHome - + +