Refresh/Clear NBViewer Cache

Add a button to navigation bar to refresh/clear the cache of nbviewer

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name        Refresh/Clear NBViewer Cache
// @namespace   https://peijunz.github.io
// @author      Peijun Zhu
// @description Add a button to navigation bar to refresh/clear the cache of nbviewer
// @include     *://nbviewer.jupyter.org/*.ipynb*
// @version     2.4.1
// @grant       none
// @icon        https://github.com/jupyter/design/raw/master/logos/Square%20Logo/squarelogo-greytext-orangebody-greymoons/squarelogo-greytext-orangebody-greymoons.png
// ==/UserScript==
function flush() {
  var url = document.location.href;
  while (url.substr( - 1) === '/' || url.substr( - 1) === '#') {
    //Strip # or / in the end
    url = url.substr(0, url.length - 1);
  }
  var tail = '?flush_cache=true';
  if (!url.endsWith(tail)) {
    document.location.href = url + tail;
  } 
  else {
    document.location.reload();
  }
}
function add_flush_button() {
  var lu = document.getElementsByClassName('nav navbar-nav navbar-right') [0];
  var li = document.createElement('li');
  var a = document.createElement('a');
  li.appendChild(a);
  lu.appendChild(li);
  a.href = '#';
  a.onclick = flush;
  a.innerHTML = '⟳';
  a.style['font-size']="2.5em";
}
add_flush_button();