Notifier

1

31.10.2023 itibariyledir. En son verisyonu görün.

Bu script direkt olarak kurulamaz. Başka scriptler için bir kütüphanedir ve meta yönergeleri içerir // @require https://update.greasyfork.org/scripts/478724/1273300/Notifier.js

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

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

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

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

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

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.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Zateb bir user-style yöneticim var, yükleyeyim!)

'use strict';

if (typeof Notification !== "function") throw Error("Not Support yet!");
Notification.requestPermission();

const notify = (() => {
    const open = (typeof GM_openInTab === "function") ?
          GM_openInTab : (uri) => window.open(uri, "_blank");
    const classic = (() => {
        return ({text, title, image, silent, tag, url: uri, ondone}) => {
            const options = {
                body: text,
                silent, tag,
                data: {uri},
                icon: image,
            };
            if (!!tag) options.renotify = true;
            const noti = new Notification(title, options);
            noti.onclick = () => (open(noti.data.uri), noti.close());
            noti.onclose = ondone;
            return {remove: () => noti.close()};
        }
    })();
    const ver = GM_info.version;
    const handler = GM_info.scriptHandler;
    const V2_15_4 = (opti) => {
        const noti = GM_notification({
            onclick: () => (open(opti.url), noti.remove()),
            ...opti
        });
        return noti;
    };
    if (handler === "Violentmonkey")
        if (ver > "2.16") return (opti) => {
            opti.zombieUrl = opti.url;
            opti.zombieTimeout = Number.MAX_SAFE_INTEGER;
            return V2_15_4(opti);
        };
        else if (ver >= "2.15.4") return V2_15_4;
        else return classic;
    else if (handler === "Tampermonkey" && ver >= "5.0") return GM_notification;
    else return classic;
})();