GreasyFork Total Scripts

Shows a user's total scripts count on GreasyFork

目前為 2016-06-07 提交的版本,檢視 最新版本

// ==UserScript==
// @name         GreasyFork Total Scripts
// @namespace    PXgamer
// @version      0.1
// @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').append('<span style="font-size: 15px;">  [' + l + ' Total Script]</span>');
    }
    else {
        $('div.width-constraint h2').append('<span style="font-size: 15px;">  [' + l + ' Total Scripts]</span>');
    }
})();

QingJ © 2025

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