Google Docs/Slides Always Visible Turn In Button

Keeps the "Turn in" button always visible on Google Docs and Slides through Google Classroom.

이 스크립트를 설치하려면 Tampermonkey, Greasemonkey 또는 Violentmonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey 또는 Violentmonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey 또는 Violentmonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey 또는 Userscripts와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 유저 스크립트 관리자 확장 프로그램이 필요합니다.

(이미 유저 스크립트 관리자가 설치되어 있습니다. 설치를 진행합니다!)

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

(이미 유저 스타일 관리자가 설치되어 있습니다. 설치를 진행합니다!)

// ==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);
})();