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

Greasy fork 爱吃馍镜像

Synchronized Bau Bau

The script to enable synchronized Bau Baus once and for all!

スクリプトをインストールするには、Tampermonkey, GreasemonkeyViolentmonkey のような拡張機能のインストールが必要です。

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

スクリプトをインストールするには、TampermonkeyViolentmonkey のような拡張機能のインストールが必要です。

スクリプトをインストールするには、TampermonkeyUserscripts のような拡張機能のインストールが必要です。

このスクリプトをインストールするには、Tampermonkeyなどの拡張機能をインストールする必要があります。

このスクリプトをインストールするには、ユーザースクリプト管理ツールの拡張機能をインストールする必要があります。

(ユーザースクリプト管理ツールは設定済みなのでインストール!)

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

公众号二维码

扫码关注【爱吃馍】

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

このスタイルをインストールするには、Stylusなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus などの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus tなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

(ユーザースタイル管理ツールは設定済みなのでインストール!)

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

公众号二维码

扫码关注【爱吃馍】

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

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==UserScript==
// @name         Synchronized Bau Bau
// @namespace    http://tampermonkey.net/
// @version      1.1
// @author       You
// @description  The script to enable synchronized Bau Baus once and for all!
// @match        https://fwmcbaubau.com/
// @icon         https://www.google.com/s2/favicons?sz=64&domain=fwmcbaubau.com
// @grant        GM_addStyle
// @run-at       document-start
// @license      MIT
// ==/UserScript==

GM_addStyle ( `
.button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dog-heads {
    display: flex;
}

.baubaubutton {
    background: linear-gradient(90deg, rgba(128,231,255,1) 0%, rgba(240,224,255,1) 50%, rgba(255,140,188,1) 100%);
    opacity: 0.8;
    font: inherit;
    width: 100%;
    margin-top: 10px;
    padding: 15px;
    border: none;
    border-radius: 12px;
}

.overlay {
    position:absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.1;
    z-index: -1;
}
` );

window.addEventListener('load', function() {
    'use strict';

    const buttonContainer = document.querySelector('.button-container');
    const fuwawa = document.querySelector('#fuwawa');
    const mococo = document.querySelector('#mococo');

    function init() {
        if (!fuwawa || !mococo) return(console.error('The dogs are missing.'));
        if (!buttonContainer) return(console.error('Button container not found'));
        addOverlay();
        groupDogHeads();
        addBauBauButton();
    }

    // Adds the double Bau Bau Button!!!
    function addBauBauButton() {
        let theButton = document.createElement('button');
        theButton.textContent = 'Bau Bau Together!';
        theButton.classList.add('baubaubutton');
        theButton.addEventListener('click', () => fuwawa.click());
        theButton.addEventListener('click', () => mococo.click());
        buttonContainer.appendChild(theButton);
    }

    function groupDogHeads() {
        let dogHeads = document.createElement('div');
        dogHeads.classList.add('dog-heads');
        buttonContainer.appendChild(dogHeads);
        dogHeads.appendChild(fuwawa);
        dogHeads.appendChild(mococo);
    }

    // Makes the background slightly darker. Can be changed to other colors/opacity using CSS.
    function addOverlay() {
        let overlay = document.createElement('overlay');
        overlay.classList.add('overlay');
        document.body.appendChild(overlay);
    }

    init();
}, false)();