页面插入按钮

在页面尾部插入按钮

目前為 2023-09-16 提交的版本,檢視 最新版本

// ==UserScript==
// @name         页面插入按钮
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  在页面尾部插入按钮
// @author       TCH
// @match        *://*.com/*
// @grant        none
// ==/UserScript==
 
(function()
{
let Container = document.createElement('div');      
Container.id = "sp-ac-container";    
Container.style.position="fixed"       
Container.style.left="220px"
Container.style.top="20px"
Container.style['z-index']="999999"
Container.innerHTML =`<button id="myCustomize" style="position:absolute; left:30px; top:20px">
  浮动按钮
</button>
`

document.body.appendChild(Container);

 
})();