您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Runs when you have ikariam open and provides push notifications when the advisors lights up.
当前为
// ==UserScript== // @name Ikariam desktop notifications // @namespace Danielv123 // @version 1.0 // @description Runs when you have ikariam open and provides push notifications when the advisors lights up. // @author Danielv123 // @match *.ikariam.gameforge.com/* // @grant none // ==/UserScript== // request permission on page load document.addEventListener('DOMContentLoaded', function () { if (Notification.permission !== "granted") { Notification.requestPermission(); } }); setInterval(function() { if ($('#js_GlobalMenu_cities')[0].className == "normalactive") { console.log('Ding!'); notifyMe("Ikariam", "Something happened in one of your towns!"); } if ($('#js_GlobalMenu_diplomacy')[0].className == "normalactive") { console.log('Ding!'); notifyMe("Ikariam", "Someone sent you a message!"); } if ($('#js_GlobalMenu_military')[0].className == "normalactive") { console.log('Ding!'); notifyMe("Ikariam", "Your militaryadvisor is trying to tell you something!"); } if ($('#js_GlobalMenu_research')[0].className == "normalactive") { console.log('Ding!'); notifyMe("Ikariam", "New research aviable!"); } },60000); function notifyMe(title, message) { if (!Notification) { alert('Desktop notifications not available in your browser. Try Chromium.'); return; } if (Notification.permission !== "granted") Notification.requestPermission(); else { var notification = new Notification(title, { icon: 'http://cdn.sstatic.net/stackexchange/img/logos/so/so-icon.png', body: message, }); notification.onclick = function () { window.open("http://http://s28-en.ikariam.gameforge.com/index.php"); }; } }
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址