This repository was archived by the owner on Feb 11, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.js
39 lines (31 loc) · 1.38 KB
/
popup.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
document.addEventListener('DOMContentLoaded', function() {
const blockBtn = document.getElementById('block-btn');
const urlInput = document.getElementById('url-input');
const blockedList = document.getElementById('blocked-list');
// Load blocked websites from localStorage and display them
let blockedWebsites = JSON.parse(localStorage.getItem('blockedWebsites')) || [];
blockedWebsites.forEach(url => addToList(url));
blockBtn.addEventListener('click', function() {
const url = urlInput.value.trim();
if (url && !blockedWebsites.includes(url)) {
blockedWebsites.push(url);
localStorage.setItem('blockedWebsites', JSON.stringify(blockedWebsites));
addToList(url);
urlInput.value = '';
}
});
function addToList(url) {
const li = document.createElement('li');
li.textContent = url;
const removeBtn = document.createElement('button');
removeBtn.textContent = "Remove";
removeBtn.className = "remove-btn";
removeBtn.addEventListener('click', function() {
blockedWebsites = blockedWebsites.filter(item => item !== url);
localStorage.setItem('blockedWebsites', JSON.stringify(blockedWebsites));
blockedList.removeChild(li);
});
li.appendChild(removeBtn);
blockedList.appendChild(li);
}
});