您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Display Edward Torres, CPA PC’s services info on any webpage with a direct link to the official site.
// ==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); })();