您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Keeps the "Turn in" button always visible on Google Docs and Slides through Google Classroom.
当前为
// ==UserScript== // @name Google Docs/Slides Always Visible Turn In Button // @namespace http://tampermonkey.net/ // @version 1.0 // @description Keeps the "Turn in" button always visible on Google Docs and Slides through Google Classroom. // @author You // @match *://docs.google.com/* // @match *://slides.google.com/* // @grant none // ==/UserScript== (function() { 'use strict'; function makeTurnInButtonVisible() { // Check for the button using a query selector let turnInButton = document.querySelector('[aria-label="Turn in"]'); if (turnInButton) { // Ensure the button is always visible turnInButton.style.display = "inline-block"; turnInButton.style.visibility = "visible"; turnInButton.style.position = "fixed"; turnInButton.style.top = "10px"; turnInButton.style.right = "10px"; turnInButton.style.zIndex = "1000"; } } // Run the function initially and set an interval to keep checking in case of DOM updates makeTurnInButtonVisible(); setInterval(makeTurnInButtonVisible, 2000); })();