Cache Clear Link

/cache-clear

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         Cache Clear Link
// @namespace    cache clear
// @version      1.2
// @description  /cache-clear
// @match        *://*/*
// @grant        none
// @license     MIT
// @author      Samuel Araújo
// @icon        https://www.tiptip.pt/public/img/iconTiptip.png
// @description corre rota de cache-clear
// ==/UserScript==


(function () {
  if (window.top !== window.self) return;

  if (window.top.__clearCacheButtonInjected) return;
  window.top.__clearCacheButtonInjected = true;

  const originalUrl = location.href;

  const link = document.createElement('a');
  link.id = 'clear-cache-link';
  link.href = '#';
  link.textContent = 'clear';
  Object.assign(link.style, {
    position: 'fixed',
    bottom: '20px',
    left: '0px',
    zIndex: '9999',
    padding: '3px 6px',
    background: '#f00',
    color: '#fff',
    textDecoration: 'none',
    borderRadius: '4px',
    fontSize: '10px',
  });

  link.addEventListener('click', function (e) {
    e.preventDefault();

    fetch(`${location.origin}/cache-clear`)
      .then(() => {
        location.href = originalUrl;
      })
      .catch(() => {
        location.href = originalUrl;
      });
  });

  window.top.document.documentElement.appendChild(link);
})();