Google Docs/Slides Always Visible Turn In Button

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

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

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