Chrome Cache Cleaner

Clears Chrome's cache

当前为 2024-05-21 提交的版本,查看 最新版本

// ==UserScript==
// @name        Chrome Cache Cleaner
// @namespace   tampermonkey
// @version     1.0
// @description Clears Chrome's cache
// @author      Aoi
// @match       *://*/*
// @grant       none
// ==/UserScript==

(function() {
  'use strict';

  // キャッシュクリアを実行
  chrome.browsingData.fetchDataStorageCache([
    {
      origin: 'https://' + window.location.hostname,
      storageType: 'cache'
    }
  ], function(bytes) {
    console.log('Cleared ' + bytes + ' bytes of cache.');
  });
})();