🎉 欢迎访问GreasyFork.Org 镜像站!本镜像站由公众号【爱吃馍】搭建,用于分享脚本。联系邮箱📮

Greasy fork 爱吃馍镜像

npmjs

npm下载量查看

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

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

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

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

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

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

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

🚀 安装遇到问题?关注公众号获取帮助

公众号二维码

扫码关注【爱吃馍】

回复【脚本】获取最新教程和防失联地址

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

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

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

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

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

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

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

🚀 安装遇到问题?关注公众号获取帮助

公众号二维码

扫码关注【爱吃馍】

回复【脚本】获取最新教程和防失联地址

// ==UserScript==
// @name         npmjs
// @description  npm下载量查看
// @namespace    npm_script
// @version      1.2.2
// @author       vizo
// @require      https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.min.js
// @include      *://*npmjs.com/search*
// @include      *://*npmjs.com/package*
// @run-at       document-end
// @grant        GM_addStyle
// @grant        GM_setValue
// @grant        GM_getValue
// @noframes

// @grant        GM_getResourceText
// @grant        GM_xmlhttpRequest
// @connect      *

// ==/UserScript==

'use strict'

GM_addStyle(`
  .spr7s {
    color: #f00;
    font-size: 12px;
    font-weight: normal;
    margin-left: 10px;
    font-family: Arial;
    font-style: italic;
  }
  .i_mxs {
    font-style: italic;
    color: #b1b1b1;
    font-size: 12px;
    margin-left: 15px;
    font-weight: normal;
  }
  .code1s {
    display: block;
    border: 1px solid #0ad;
    padding: 5px;
  }
  .code1s * {
    font-family: Consolas, "Helvetica Neue", PingFang SC, sans-serif !important;
    font-size: 14px;
    font-weight: normal;
  }
  .code1s pre {
    margin-bottom: 0;
  }
`)

let timer1s = null

$(function () {
  
  function initScript() {
    eachItem()
  }
  
  function reqItemDetail(url, domTit) {
    GM_xmlhttpRequest({
      url,
      method: 'get',
      onload: function(xhr) {
        try {
          let text = xhr.response
          let downNum = text.replace(/[\n\r\f]/g, '').replace(/.+pb1">(.+?)<\/p>.+/g, '$1')
          if (downNum.length > 20) return
          domTit.append(`<span class="spr7s">${downNum}</span><i class="i_mxs">流行度,质量,更新</i>`)
        } catch (e) {}
      },
    })
  }
  
  // 遍历item
  function eachItem() {
    let ns = $('.pt2-ns .pl1-ns')
    ns.each((i, v) => {
      let tis = $(v)
      let url = tis.find('.pr3 > a').attr('href')
      let h3 = tis.find('.pr3 > a > h3.fw6')
      let cts = h3.find('.spr7s')
      if (!cts.length && i < 4) {
        reqItemDetail(url, h3)
      }
    })
  }
  
  setTimeout(() => {
    $('.highlight pre').wrap('<code class="code1s"></code>')
  }, 1000)
  
  initScript()
})