Zoho Desk FPT Popup

Thêm nút FPT University hiện popup chào trên Zoho Desk

Tác giả
Minh Thanh
Cài đặt hàng ngày
0
Số lần cài đặt
1
Đánh giá
0 0 0
Phiên bản
1.0
Đã tạo
28-05-2025
Đã cập nhật
28-05-2025
Size
2 KB
Giấy phép
N/A
Áp dụng cho

// ==UserScript==
// @name ZohoDesk CRM Popup Button
// @namespace https://minhthanh.dev/
// @version 1.0
// @description Thêm nút pop-up trên trang Zoho Desk CRM Integration
// @author Minh Thanh
// @match https://www.zoho.com/desk/crm-integration.html
// @grant none
// ==/UserScript==

(function() {
'use strict';

window.addEventListener('load', function () {
// Tạo nút pop-up
const btn = document.createElement('button');
btn.textContent = 'Hiện thông báo';
btn.style.position = 'fixed';
btn.style.bottom = '20px';
btn.style.right = '20px';
btn.style.padding = '10px 15px';
btn.style.zIndex = 9999;
btn.style.backgroundColor = '#007bff';
btn.style.color = 'white';
btn.style.border = 'none';
btn.style.borderRadius = '5px';
btn.style.cursor = 'pointer';

// Tạo hộp pop-up
const popup = document.createElement('div');
popup.innerHTML = `

Thông báo

Bạn vừa bật pop-up thành công!

Đóng

`;
popup.style.position = 'fixed';
popup.style.top = '30%';
popup.style.left = '35%';
popup.style.zIndex = 9999;
popup.style.display = 'none';

btn.onclick = () => {
popup.style.display = 'block';
};

document.body.appendChild(btn);
document.body.appendChild(popup);
});
})();