Script
tình cờ mình nhận ra chỉ cần chỉnh sữa một số dòng code trong thuật toán đơn giản và thêm tiện ít Tampermonkey
ở Chrome
, Firefox
hay Microsoft Edge
là có thể phá vỡ những tính năng chắn người dùng của trang webblog như Bôi đen, Ctrl + C, hay F12
Chúng ta bắt đầu với thủ thuật này nhé.
Bước 1. Các bạn cài đặt
Google Chrome: Truy cập Chrome Web Store - Tampermonkey và nhấn Add to Chrome.
Firefox: Truy cập Mozilla Add-ons - Tampermonkey và nhấn Add to Firefox.
Microsoft Edge: Truy cập Microsoft Edge Add-ons - Tampermonkey và nhấn Get.
Bước 2: Tạo một Script mới trong
Mở Tampermonkey:
Nhấp vào biểu tượng Tampermonkey trên thanh công cụ của trình duyệt.
Chọn "Tạo tệp lệnh mới...".
Chỉnh sửa Script:
Xóa nội dung mặc định trong cửa sổ trình soạn thảo.
Copy toàn bộ Script bên dưới
Nhấp biểu tượng
Bước 1. Các bạn cài đặt Tampermonkey
Google Chrome: Truy cập Chrome Web Store - Tampermonkey và nhấn Add to Chrome.Firefox: Truy cập Mozilla Add-ons - Tampermonkey và nhấn Add to Firefox.
Microsoft Edge: Truy cập Microsoft Edge Add-ons - Tampermonkey và nhấn Get.
Bước 2: Tạo một Script mới trong Tampermonkey
Mở Tampermonkey:Nhấp vào biểu tượng Tampermonkey trên thanh công cụ của trình duyệt.
Chọn "Tạo tệp lệnh mới...".
Chỉnh sửa Script:
Xóa nội dung mặc định trong cửa sổ trình soạn thảo.
Copy toàn bộ Script bên dưới
// ==UserScript==
// @name Restore Text Selection
// @namespace https://theloi.io.vn/
// @version 1.1
// @description Khôi phục chức năng bôi đen, chuột phải, sao chép và DevTools bị chặn trên các trang web với menu tùy chỉnh
// @author Lợi Nguyễn
// @copyright © 2025 Lợi Nguyễn. All rights reserved. Do not modify or remove author information.
// @match *://*/*
// @grant GM_setValue
// @grant GM_getValue
// @grant GM_registerMenuCommand
// @require https://raw.githubusercontent.com/lowji194/Tampermonkey/refs/heads/main/scripts/Restore-Right-Click-Menu-and-Copy.js
// @require https://cdn.jsdelivr.net/npm/sweetalert2@11/dist/sweetalert2.min.js
// @resource sweetalert2_css https://cdn.jsdelivr.net/npm/sweetalert2@11/dist/sweetalert2.min.css
// @updateURL https://raw.githubusercontent.com/lowji194/Tampermonkey/refs/heads/main/scripts/Restore-Right-Click-Menu-and-Copy.js
// @downloadURL https://raw.githubusercontent.com/lowji194/Tampermonkey/refs/heads/main/scripts/Restore-Right-Click-Menu-and-Copy.js
// ==/UserScript==
Bước 3. Nhập Script:
Dán mã script vào, bạn nhấn File > Save hoặc nhấnCtrl + S
để lưu.Nhấp biểu tượng
Tampermonkey
và kích hoạt Script vừa cài đặtNhư vậy đã hoàn thành, và các bạn có thể thoải mái sao chép mọi thứ mà không phải lo nghĩ gì nữa nhé.