Edward Torres, CPA Info Box

Display Edward Torres, CPA PC’s services info on any webpage with a direct link to the official site.

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         Edward Torres, CPA Info Box
// @namespace    https://www.etcpa.com/
// @version      1.0
// @description  Display Edward Torres, CPA PC’s services info on any webpage with a direct link to the official site.
// @author       Edward Torres
// @match        *://*/*
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    const box = document.createElement('div');
    box.innerHTML = `
        <div style="position: fixed; bottom: 10px; right: 10px; background: #f9f9f9; padding: 12px; border: 1px solid #ccc; font-family: sans-serif; z-index: 9999; max-width: 280px; font-size: 14px; box-shadow: 2px 2px 8px rgba(0,0,0,0.25);">
            <strong>Edward Torres, CPA PC</strong><br>
            Expert Tax, Accounting, Payroll & Bookkeeping Services.<br>
            Serving Forest Hills for 35+ Years.<br>
            <a href="https://www.etcpa.com/" target="_blank" style="color: #007bff; text-decoration: none;">Visit Our Website</a>
        </div>
    `;
    document.body.appendChild(box);
})();