5 min read · 1,049 words

Speed up Steam downloads

Stay on op - Ge the daily news in your inbox

spot_img
/** * WikiWax Authority Link Builder * Auto-links topic keywords to mesh domains + internal WikiWax articles * Mesh domains: 1334100-1334299 (tech/cybersecurity cluster) * Opens links in new tab, rel="noopener" * Max 4 auto-links per page */ (function() { 'use strict'; // Keywords to auto-link (first occurrence only per keyword) const KEYWORDS_TO_LINK = [ 'security', 'privacy', 'data protection', 'encryption', 'password', 'cybersecurity', 'hacking', 'malware', 'firewall', 'backup', 'cloud storage', 'two-factor' ]; // Mesh domains: 1334100-1334299 const MESH_DOMAIN_BASE = 1334100; const MESH_DOMAIN_RANGE = 200; let linkCount = 0; const MAX_LINKS = 4; const linkedKeywords = new Set(); function getMeshDomainForKeyword(keyword) { // Hash keyword to determine domain let hash = 0; for (let i = 0; i < keyword.length; i++) { hash = ((hash << 5) - hash) + keyword.charCodeAt(i); hash = hash & hash; // Convert to 32bit integer } const domainNum = MESH_DOMAIN_BASE + (Math.abs(hash) % MESH_DOMAIN_RANGE); return `https://${domainNum}.xyz/`; } function linkifyKeyword(node, keyword) { if (linkCount >= MAX_LINKS) return; if (linkedKeywords.has(keyword.toLowerCase())) return; const regex = new RegExp(`\\b${keyword}\\b`, 'gi'); const text = node.nodeValue; let match = regex.exec(text); if (!match) return; // Only link first occurrence linkedKeywords.add(keyword.toLowerCase()); const span = document.createElement('span'); span.appendChild(document.createTextNode(text.substring(0, match.index))); const link = document.createElement('a'); link.href = getMeshDomainForKeyword(keyword); link.target = '_blank'; link.rel = 'noopener noreferrer'; link.style.fontWeight = '600'; link.style.textDecoration = 'none'; link.style.borderBottom = '1px solid #2196F3'; link.style.color = 'inherit'; link.appendChild(document.createTextNode(match[0])); span.appendChild(link); span.appendChild(document.createTextNode(text.substring(match.index + match[0].length))); node.parentNode.replaceChild(span, node); linkCount++; } function processNode(node) { if (linkCount >= MAX_LINKS) return; if (node.nodeType === Node.TEXT_NODE) { const text = node.nodeValue.toLowerCase(); for (const keyword of KEYWORDS_TO_LINK) { if (text.includes(keyword.toLowerCase())) { linkifyKeyword(node, keyword); if (linkCount >= MAX_LINKS) return; } } } else if (node.nodeType === Node.ELEMENT_NODE && node.nodeName !== 'A' && node.nodeName !== 'SCRIPT' && node.nodeName !== 'STYLE') { // Process child nodes for (let i = 0; i < node.childNodes.length && linkCount < MAX_LINKS; i++) { processNode(node.childNodes[i]); } } } function addInternalCrossLinks() { const article = document.querySelector('article') || document.querySelector('.post-content') || document.querySelector('.entry-content') || document.querySelector('main'); if (!article) return; // Get all article headings on site const h1 = article.querySelector('h1'); if (!h1) return; const currentTitle = h1.textContent.toLowerCase(); // Create cross-link widget const crossLinkBox = document.createElement('div'); crossLinkBox.style.cssText = ` background: #f0f7ff; border-left: 4px solid #2196F3; padding: 12px 16px; margin: 20px 0; border-radius: 4px; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; font-size: 13px; `; const label = document.createElement('div'); label.style.cssText = 'font-weight: 600; color: #2196F3; margin-bottom: 8px;'; label.textContent = 'Related Articles:'; crossLinkBox.appendChild(label); // Find related articles (mock - in real scenario, fetch from WordPress API) const relatedKeywords = ['security', 'privacy', 'encryption', 'backup']; const linksList = document.createElement('div'); linksList.style.cssText = 'display: flex; flex-direction: column; gap: 6px;'; relatedKeywords.forEach((keyword, idx) => { if (idx >= 2) return; // Max 2 cross-links const link = document.createElement('a'); link.href = `/?s=${encodeURIComponent(keyword)}`; link.style.cssText = 'color: #2196F3; text-decoration: none; font-weight: 500;'; link.textContent = `→ More about ${keyword}`; linksList.appendChild(link); }); crossLinkBox.appendChild(linksList); // Insert cross-link box const lastPara = article.querySelector('p:last-of-type'); if (lastPara) { lastPara.parentNode.insertBefore(crossLinkBox, lastPara.nextSibling); } } function scanAndLink() { const article = document.querySelector('article') || document.querySelector('.post-content') || document.querySelector('.entry-content') || document.querySelector('main'); if (!article) return; processNode(article); addInternalCrossLinks(); } // Run on page load if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', scanAndLink); } else { scanAndLink(); } })(); /** * WikiWax Ad Zone Manager * Creates designated placeholder ad zones for Ezoic or direct ad fill * Zones: after-title (728x90), in-content (300x250 every 3rd para), sidebar (300x600), footer (728x90) * Responsive: hides large formats on mobile, shows mobile-optimized sizes */ (function() { 'use strict'; const isMobile = window.innerWidth < 768; // Create stylesheet for ad zones const style = document.createElement('style'); style.textContent = ` .wikiwax-ad-zone { background: #fafafa; border: 1px dashed #ddd; border-radius: 4px; display: flex; align-items: center; justify-content: center; color: #aaa; font-size: 12px; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; font-weight: 500; overflow: hidden; } .wikiwax-ad-zone-label { position: absolute; top: 4px; left: 4px; font-size: 9px; color: #ccc; text-transform: uppercase; letter-spacing: 0.5px; } /* After-title zone */ .wikiwax-ad-zone-after-title { width: 100%; height: 90px; margin: 20px 0; } /* In-content zone (300x250) */ .wikiwax-ad-zone-in-content { width: 300px; height: 250px; margin: 20px auto; float: left; margin-right: 20px; } /* Sidebar zone (300x600) */ .wikiwax-ad-zone-sidebar { width: 100%; height: 600px; margin: 20px 0; } /* Footer zone (728x90) */ .wikiwax-ad-zone-footer { width: 100%; height: 90px; margin: 20px 0; } /* Mobile responsive */ @media (max-width: 768px) { .wikiwax-ad-zone-in-content { width: 100%; height: auto; min-height: 250px; float: none; margin: 20px 0; } .wikiwax-ad-zone-sidebar { width: 100%; height: 250px; } .wikiwax-ad-zone-after-title { height: 50px; } .wikiwax-ad-zone-footer { height: 50px; } } /* When ad loads, remove border */ .wikiwax-ad-zone.ad-loaded { background: transparent; border: none; } .wikiwax-ad-zone.ad-loaded .wikiwax-ad-zone-label { display: none; } `; document.head.appendChild(style); function createAdZone(type, placement) { const zone = document.createElement('div'); zone.className = `wikiwax-ad-zone wikiwax-ad-zone-${type}`; zone.setAttribute('data-ad-type', type); zone.setAttribute('data-ad-placement', placement); const label = document.createElement('div'); label.className = 'wikiwax-ad-zone-label'; label.textContent = `${type} ad`; zone.appendChild(label); const placeholder = document.createElement('div'); placeholder.style.width = '100%'; placeholder.style.height = '100%'; placeholder.style.display = 'flex'; placeholder.style.alignItems = 'center'; placeholder.style.justifyContent = 'center'; placeholder.textContent = 'Ad'; zone.appendChild(placeholder); return zone; } function insertAdZones() { const article = document.querySelector('article') || document.querySelector('.post-content') || document.querySelector('.entry-content') || document.querySelector('main'); if (!article) return; // 1. After-title zone (after h1 or first heading) const h1 = article.querySelector('h1'); if (h1) { const afterTitleZone = createAdZone('after-title', 'post-header'); h1.parentNode.insertBefore(afterTitleZone, h1.nextSibling); } // 2. In-content zones (every 3rd paragraph) const paragraphs = article.querySelectorAll('p'); let zoneCount = 0; for (let i = 2; i < paragraphs.length; i += 3) { if (zoneCount >= 1) break; // Max 1 in-content zone to avoid clutter const inContentZone = createAdZone('in-content', `para-${i}`); paragraphs[i].parentNode.insertBefore(inContentZone, paragraphs[i].nextSibling); zoneCount++; } // 3. Sidebar zone (if sidebar exists) const sidebar = document.querySelector('.sidebar') || document.querySelector('aside') || document.querySelector('.widgetarea'); if (sidebar) { const sidebarZone = createAdZone('sidebar', 'sidebar-primary'); sidebar.insertBefore(sidebarZone, sidebar.firstChild); } // 4. Footer zone (at end of article) const footerZone = createAdZone('footer', 'post-footer'); article.appendChild(footerZone); } // Expose global API for ad networks to mark zones as loaded window.WikiWaxAds = { markZoneLoaded: function(type) { const zone = document.querySelector(`[data-ad-type="${type}"]`); if (zone) { zone.classList.add('ad-loaded'); } } }; // Run on page load if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', insertAdZones); } else { insertAdZones(); } })(); /** * WikiWax Contextual Affiliate Inserter * Auto-detects product mentions in article content and inserts affiliate recommendation boxes * Amazon Associates Tag: 2mrcarter-20 * Max 3 insertions per page */ (function() { 'use strict'; // Product categories to detect const PRODUCT_CATEGORIES = { 'headphones': { name: 'Headphones & Earbuds', query: 'best headphones' }, 'laptop': { name: 'Laptops & Computers', query: 'best laptop' }, 'phone': { name: 'Smartphones', query: 'best phone' }, 'camera': { name: 'Digital Cameras', query: 'best camera' }, 'keyboard': { name: 'Keyboards', query: 'best keyboard' }, 'monitor': { name: 'Computer Monitors', query: 'best monitor' }, 'tablet': { name: 'Tablets', query: 'best tablet' }, 'speaker': { name: 'Speakers', query: 'best speaker' }, 'charger': { name: 'Phone Chargers', query: 'best charger' }, 'mouse': { name: 'Computer Mouse', query: 'best mouse' }, 'software': { name: 'Software & Apps', query: 'software deals' }, 'hosting': { name: 'Web Hosting', query: 'web hosting' }, 'vpn': { name: 'VPN Services', query: 'best vpn' }, 'antivirus': { name: 'Antivirus Software', query: 'best antivirus' } }; const AMAZON_TAG = '2mrcarter-20'; const MAX_INSERTIONS = 3; let insertionCount = 0; function createAffiliateBox(productKey, productData) { const box = document.createElement('div'); box.className = 'wikiwax-affiliate-box'; box.innerHTML = `
Recommended

${productData.name}

Explore curated options on Amazon

View on Amazon →
As an Amazon Associate, WikiWax earns from qualifying purchases.
`; return box; } function scanAndInsert() { // Get main content area (works with most WP themes) const contentArea = document.querySelector('article') || document.querySelector('.post-content') || document.querySelector('.entry-content') || document.querySelector('main'); if (!contentArea) return; const paragraphs = contentArea.querySelectorAll('p'); const detectedProducts = new Map(); // Scan paragraphs for product keywords paragraphs.forEach((para) => { const text = para.textContent.toLowerCase(); for (const [key, data] of Object.entries(PRODUCT_CATEGORIES)) { if (text.includes(key) && !detectedProducts.has(key)) { detectedProducts.set(key, data); } } }); // Insert affiliate boxes after relevant paragraphs (max 3) const productsToInsert = Array.from(detectedProducts.entries()).slice(0, MAX_INSERTIONS); let paraIndex = 0; productsToInsert.forEach(([productKey, productData]) => { const targetPara = paragraphs[Math.floor(paragraphs.length / (productsToInsert.length + 1)) * (paraIndex + 1)]; if (targetPara) { const box = createAffiliateBox(productKey, productData); targetPara.parentNode.insertBefore(box, targetPara.nextSibling); insertionCount++; } paraIndex++; }); } // Run on page load if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', scanAndInsert); } else { scanAndInsert(); } // Also run after a small delay to catch dynamically loaded content setTimeout(scanAndInsert, 1500); })();