Greasy Fork 还支持 简体中文。

Avatar Builder+

you can change your avatar/pfp to any image

As of 2022-04-26. See the latest version.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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

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

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

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.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Avatar Builder+
// @namespace    http://tampermonkey.net/
// @version      2.0
// @description  you can change your avatar/pfp to any image
// @author       Vholran
// @require      https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js
// @require      https://cdnjs.cloudflare.com/ajax/libs/js-cookie/3.0.1/js.cookie.min.js
// @require      https://greasyfork.org/scripts/444014-doabs-library/code/DoABS%20Library.js?version=1044188
// @match        https://*.drawaria.online/avatar/builder/
// @icon         https://www.google.com/s2/favicons?sz=64&domain=drawaria.online
// @grant        none
// ==/UserScript==

(function ($, undefined) {
    $(function () {
        const start = ()=>{
            let wait = setInterval(()=>{
                if($('.Canvas').length == 1){
                    $('header').append('<label class="Button" for="image_input">Upload Image</label><input style="display:none" id="image_input" type="file" accept="image/jpeg, .png, .gif">');
                    avatar();
                    clearInterval(wait);
                }
            }, 200);
        }
        start();
        });
})(window.jQuery.noConflict(true));