Poki Title and Favicon Changer to Smartschool

Makes Poki look like Smartschool (title & icon)

ही स्क्रिप्ट इंस्टॉल करा?
लेखकाने सुचवलेली स्क्रिप्ट

तुम्हाला कदाचित ही स्क्रिप्टदेखील आवडेल: Smartschool Customizer - Final Version.

ही स्क्रिप्ट इंस्टॉल करा
// ==UserScript==
// @name         Poki Title and Favicon Changer to Smartschool
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Makes Poki look like Smartschool (title & icon)
// @author       Lowie Theuwis
// @match        https://*poki.com/*
// @icon         https://smartschool.be/favicon.ico
// @grant        none
// @license      MIT
// ==/UserScript==

(function () {
    'use strict';

window.addEventListener('load', () => {
    document.title = "Smartschool";
});

    // Replace favicon
    const newFaviconUrl = 'https://smartschool.be/favicon.ico'; // Your base64 image here

    // Remove existing favicons
    const oldIcons = document.querySelectorAll('link[rel*="icon"]');
    oldIcons.forEach(icon => icon.remove());

    // Create new favicon
    const favicon = document.createElement('link');
    favicon.rel = 'icon';
    favicon.href = newFaviconUrl;
    document.head.appendChild(favicon);

})();