1:) Add a folder selection to your project. (You can choose to read only or delete what you read.)
2:) Create a folder and keep the cookies in separate txt files.
3:) After starting the project, transfer the variable from the folder selection to Read File. Change the name FILE_CONTENT to COOKIE.
4:) Call the COOKIE variable in the previous process and perform the Network/Restore Cookies process.
5:) Open google.com in the browser, the cookie will be added.
Не работает MutationObserver
-
На новом движке не работает MutationObserver, этот пример при выполнение на любом сайте в обычном браузере покажет в логе изменение, в БАС ничего.
let observer = new MutationObserver(mutation => { console.log(mutation) }); observer.observe(document.body, { childList: true, subtree: true }); let div = document.createElement('div'); document.body.append(div); -
@UserTrue said in Не работает MutationObserver:
На новом движке не работает MutationObserver, этот пример при выполнение на любом сайте в обычном браузере покажет в логе изменение, в БАС ничего.
let observer = new MutationObserver(mutation => { console.log(mutation) }); observer.observe(document.body, { childList: true, subtree: true }); let div = document.createElement('div'); document.body.append(div);Обнови страницу
