GreasyFork Total Scripts

Shows a user's total scripts count on GreasyFork

目前为 2018-02-05 提交的版本,查看 最新版本

// ==UserScript==
// @name         GreasyFork Total Scripts
// @namespace    pxgamer
// @version      0.2
// @description  Shows a user's total scripts count on GreasyFork
// @author       pxgamer
// @include      *gf.qytechs.cn/en/users/*
// @grant        none
// ==/UserScript==
/*jshint multistr: true */

(function() {
    'use strict';

    var l = $('li[data-script-id]').length;
    if (l == 1) {
        $('div.width-constraint h2:first').append('<span style="font-size: 15px;">  [' + l + ' Total Script]</span>');
    }
    else {
        $('div.width-constraint h2:first').append('<span style="font-size: 15px;">  [' + l + ' Total Scripts]</span>');
    }
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址