mirror of
https://github.com/tubearchivist/browser-extension.git
synced 2024-11-12 15:10:13 +00:00
parent
c82e493628
commit
0d58ddaaa2
@ -208,6 +208,7 @@ function buildCookieLine(cookie) {
|
||||
|
||||
async function sendCookies() {
|
||||
console.log('function sendCookies');
|
||||
const acceptableDomains = ['.youtube.com', 'youtube.com', 'www.youtube.com'];
|
||||
|
||||
let cookieStores = await browserType.cookies.getAllCookieStores();
|
||||
let cookieLines = [
|
||||
@ -223,7 +224,9 @@ async function sendCookies() {
|
||||
});
|
||||
for (let j = 0; j < allCookiesStore.length; j++) {
|
||||
const cookie = allCookiesStore[j];
|
||||
cookieLines.push(buildCookieLine(cookie));
|
||||
if (acceptableDomains.includes(cookie.domain)) {
|
||||
cookieLines.push(buildCookieLine(cookie));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user