Greasy Fork is available in English.

DMoast

备份自https://greasyfork.org/zh-CN/scripts/399356-dtoast/code

This script should not be not be installed directly. It is a library for other scripts to include with the meta directive // @require https://update.greasyfork.org/scripts/472780/1232954/DMoast.js

Aŭtoro
zy cat
Versio
0.0.1.20230809110919
Kreita
2023/08/09
Ĝisdatigita
2023/08/09
Licenco
N/A

var config={
title:"新消息",//通知标题部分
body:"新消息内容",//通知内容部分
timeout:2000,//消失延时 默认6.5秒
master:"涛之雨",//提醒的所有者 默认为当前域名
inner:true, // 是浏览器仿桌面通知 否首选桌面通知 默认否 可选
onclick:function(data){ //监听点击通知 data:可传递参数 可选
alert("仿桌面通知被点击了,参数是"+data);
},
data:"我是仿桌面通知的参数",//可传递参数 可选
icon:"img/1.png"//通知的图片 可选
}

//仿桌面通知
new dToast(config);