Zotero Plugins Install/Update

Zotero Plugins

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==UserScript==
// @name         Zotero Plugins Install/Update
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  Zotero Plugins
// @author       Polygon
// @match        https://plugins.zotero-chinese.com/
// @icon         https://www.google.com/s2/favicons?sz=64&domain=zotero-chinese.com
// @grant        GM_xmlhttpRequest
// @grant        unsafeWindow
// @run-at       document-end
// ==/UserScript==

(function () {
  'use strict';
  // zotero://plugin/?action=install&url=https%3A%2F%2Fgithub.com%2Fvolatile-static%2FChartero%2Freleases%2Fdownload%2F2.0.0%2Fchartero.xpi
  const id = setInterval(() => {
    if (!document.querySelector("table")) {
      return
    }
    clearInterval(id)
    GM_xmlhttpRequest({
      method: "POST",
      url: "http://127.0.0.1:23119/getAllPluginVersion",
      headers: {
        "Content-Type": "application/json",
      },
      responseType: "json",
      onload: function (res) {
        const addons = res.response;
        main(addons)
      }
    })

  }, 10)
  const main = (addons) => {
    [...document.querySelectorAll("tr td")]
      .filter(i => i.innerText == "7")
      .forEach(td => {
        const a = td.parentNode.children[0].querySelector("a") || td.parentNode.previousElementSibling.children[0].querySelector("a")
        const homepageURL = a.getAttribute("href")
        const addon = addons.find(addon => addon.homepageURL.toLowerCase().replace(/\-/g, "") == homepageURL.toLowerCase().replace(/\-/g, ""))
        const sourceNode = [...td.parentNode.children].slice(-1)[0]
        const sourceAtags = sourceNode.querySelectorAll("a")
        sourceAtags.forEach(a => {
          const href = a.getAttribute("href")
          a.innerText = `从${a.innerText}安装`;
          sourceNode.style.backgroundColor = "rgba(66, 185, 131, .2)"
          a.setAttribute("href", `zotero://plugin/?action=install&url=${encodeURIComponent(href)}`)
          a.style.color = "#42b983"
        })
        if (addon) {
          const version = td.nextElementSibling.innerText
          console.log(addon.id, "最新版本", version, "安装版本", addon.version)
          if (version.replace(/^v/, "") > addon.version.replace(/^v/, "")) {
            sourceAtags.forEach(a => {
              const href = a.getAttribute("href")
              a.innerText = a.innerText.replace("安装", "更新")
              sourceNode.style.backgroundColor = "#42b983"
              a.style.color = "white"
              a.setAttribute("href", `zotero://plugin/?action=install&url=${encodeURIComponent(href)}`)
            })
          } else {
            sourceNode.style.backgroundColor = "#42b983"
            sourceNode.innerHTML = `<span style="font-weight: bold; color: white;">⭐已安装</span>`;
          }
        }
      })
  }

})();