您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Automatically refreshes login and keeps stocks updating live on German DiBa site.
当前为
// ==UserScript== // @name ING DiBa Comfort Tools // @description Automatically refreshes login and keeps stocks updating live on German DiBa site. // @description:de Erneuert automatisch den Login auf der DiBa website und hält die Kurse im Live-Modus. // @version 0.2.0 // @author Rsge // @copyright 2023+, Jan G. (Rsge) // @license Mozilla Public License 2.0 // @icon https://banking.ing.de/app/obligo/static/resource/icon-16x16-ver-34F56DF9647FC5EF3BBEFA31470B5827.png // @namespace https://github.com/Rsge // @homepageURL https://github.com/Rsge/ING-DiBa-Comfort-Tools // @supportURL https://github.com/Rsge/ING-DiBa-Comfort-Tools/issues // @match https://banking.ing.de/app/* // @match https://wertpapiere.ing.de/Investieren/*/Charts/* // @grant none // ==/UserScript== (function() { 'use strict'; // -- Auto-Refreshers -- var millisecondsToWait const minsToMSMult = 60 * 1000 // Automatic login refresh. millisecondsToWait = Math.floor(4.5 * minsToMSMult); window.setInterval(function () { window.dispatchEvent(new CustomEvent("ingde-sn:reset-timer")); }, millisecondsToWait); // Automatic stocks refresh. millisecondsToWait = Math.floor(59 * minsToMSMult); window.setInterval(function() { window.dispatchEvent(new MouseEvent("mousemove")); }, millisecondsToWait); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址