Limpa o Cache do Navegador

Limpa o cache sempre que uma nova guia for aberta

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name                  Limpa o Cache do Navegador
// @description           Limpa o cache sempre que uma nova guia for aberta
// @namespace             CowanCACHE
// @license               CowBas
// @version               1.0
// @author                Cowanbas
// @match                 *://*/*
// @run-at                document-start
// ==/UserScript==

(function () {
  'use strict';

  // Armazena a chave única para o site atual no sessionStorage
  const siteKey = `cacheCleared:${window.location.hostname}`;

  // Verifica se a limpeza já foi realizada para esta aba
  if (sessionStorage.getItem(siteKey)) {
    console.log(`Cache already cleared for ${window.location.hostname}.`);
    return; // Sai do script se a limpeza já foi feita nesta sessão
  }

  // Marca a limpeza como feita para esta sessão
  sessionStorage.setItem(siteKey, 'true');

  // Limpa Service Workers
  function clearServiceWorkers() {
    if ('serviceWorker' in navigator) {
      navigator.serviceWorker.getRegistrations().then(function (registrations) {
        registrations.forEach(function (registration) {
          registration.unregister();
          console.log('Service worker cache cleared.');
        });
      });
    }
  }

  // Adiciona parâmetros únicos para evitar uso de cache nos recursos atuais
  function reloadWithoutCache() {
    const allLinks = document.querySelectorAll('link[rel="stylesheet"], script, img');
    allLinks.forEach(element => {
      const url = new URL(element.src || element.href, window.location.origin);
      url.searchParams.set('_nocache', Date.now());
      if (element.tagName === 'LINK' || element.tagName === 'SCRIPT') {
        element.href = url.toString();
      } else if (element.tagName === 'IMG') {
        element.src = url.toString();
      }
    });
    console.log('Resources reloaded with cache-busting parameters.');

    // Recarrega a página sem usar cache
    location.reload(); // Recarrega a página normalmente
  }

  // Executa a limpeza
  console.log(`Performing cache clear for ${window.location.hostname}.`);
  clearServiceWorkers();
  reloadWithoutCache();
})();