您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Acest script ajută la urcarea rețetelor în SIPE pe pagina Rețete în icMED
当前为
// ==UserScript== // @name icMED - urcare rețete în SIPE // @name:en icMED - offline receipt uploader // @namespace http://tampermonkey.net/ // @version 2024-07-01 // @description Acest script ajută la urcarea rețetelor în SIPE pe pagina Rețete în icMED // @description:en This script is used to upload the receipts into the SIPE system from the icMED software's Retete page // @author Csaba Tekse // @match https://app1.icmed.ro/Main/Reports/CentralizatoareRapoarteCAS/Retete.module.aspx // @icon https://www.google.com/s2/favicons?sz=64&domain=icmed.ro // @grant none // @license MIT // ==/UserScript== /* globals jQuery */ (function() { setInterval(function () { var linesWithSyncBtns = jQuery("input[name$='btnSincronizeazaOffline']").closest('tr'); var linesWithErrors = jQuery("input[name$='imgArrow']").closest('tr'); var syncBtns = linesWithSyncBtns.not(linesWithErrors).find("input[name$='btnSincronizeazaOffline']"); syncBtns.first().click(); }, 8000); })();