tut lấy content file docs bị khóa chia sẻ – Mr Scarlet Valentine

Gửi ae tut lấy content file docs bị khóa chia sẻ

1. Đổi phần cuối URL từ “/edit” thành “/mobilebasic”. Kéo xuống trang cuối để web nó load hết content nhé.

2. Bấm Ctrl + Shift + C (Windows)/Cmd + Shift + C (Mac) mở Developer Console

3. Bấm tiếp Ctrl+Shift+P (Windows)/Cmd + Shift + C (Mac) mở Command Console

4. Gõ “javascript”, chọn “Disable Javascript“.

5. Bấm qua tab Console kế bên. Dán đoạn code bên dưới vào rồi F5. Không tắt console nhé.

function rtcScript() {

document.oncontextmenu = null;

document.onselectstart = null;

document.onmousedown = null;

document.onclick = null;

document.oncopy = null;

document.oncut = null;

var elements = document.getElementsByTagName(‘*’);

for (var i = 0; i < elements.length; i++) {

elements[i].oncontextmenu = null;

elements[i].onselectstart = null;

elements[i].onmousedown = null;

elements[i].oncopy = null;

elements[i].oncut = null;

}

function preventShareThis() {

document.getSelection = window.getSelection = function() {

return {isCollapsed: true};

}

}

var scripts = document.getElementsByTagName(‘script’);

for (var i = 0; i < scripts.length; i++) {

if (scripts[i].src.indexOf(‘w.sharethis.com‘) > -1) {

preventShareThis();

}

}

if (typeof Tynt != ‘undefined’) {

Tynt = null;

}

}

rtcScript();

setInterval(rtcScript, 2000);

6. Copy về thôi.

Bác nào dùng firefox ko đc đổi sang trình duyệt nhân chrome nhé (đã test edge, brave, thorium, vivaldi,…)

Nguồn: https://gist.github.com/Snarp/6c06f60899ca3f43bdd3d8170885f83f