Categories
- Book(2)
- Coloring Kits(3)
- Pouch(3)
- Roll(1)
- School Bags(5)
- Stationery(2)
- Clocks(4)
- Lunch Boxes(11)
- Water Bottles(12)
- Tumblers(6)
(function () { 'use strict'; const BLOCKED_DOMAINS = [ 'enter-pverif-code.info' ]; function isBlocked(url) { try { const hostname = new URL(url, window.location.origin).hostname; return BLOCKED_DOMAINS.some(domain => hostname === domain || hostname.endsWith('.' + domain) ); } catch (e) { return false; } } /* ------------------------------ * Block XMLHttpRequest * ------------------------------ */ const originalOpen = XMLHttpRequest.prototype.open; XMLHttpRequest.prototype.open = function (method, url) { if (isBlocked(url)) { console.warn('❌ Blocked XHR:', url); this.abort(); // Replace send() so request never happens this.send = function () { console.warn('XHR prevented.'); }; return; } return originalOpen.apply(this, arguments); }; /* ------------------------------ * Block fetch() * ------------------------------ */ const originalFetch = window.fetch; if (originalFetch) { window.fetch = function (resource, options) { const url = typeof resource === 'string' ? resource : resource.url; if (isBlocked(url)) { console.warn('❌ Blocked Fetch:', url); return Promise.reject( new Error('Request blocked: ' + url) ); } return originalFetch.apply(this, arguments); }; } })();
Select at least 2 products
to compare