Claude Sidebar Toggle

Toggle Claude sidebar with a keyboard shortcut

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

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

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

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

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

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.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name         Claude Sidebar Toggle
// @namespace    https://github.com/Maoyeedy
// @version      1.0
// @description  Toggle Claude sidebar with a keyboard shortcut
// @author       Maoyeedy
// @match        https://claude.ai/*
// @grant        none
// ==/UserScript==

(function () {
    'use strict'

    // CUSTOMIZE YOUR SHORTCUT HERE
    const TOGGLE_SHORTCUT = {
        key: '\\',      // Default to Backslash key
        ctrlKey: true,  // Default true for Ctrl
        altKey: false,  // Default false for Alt
    }

    // Toggle sidebar function
    function toggleSidebar () {
        const pinButton = document.querySelector('button[data-testid="pin-sidebar-toggle"]')
        if (pinButton) {
            pinButton.click()
        } else {
            console.log('[Claude Sidebar Toggle] No toggle button found')
        }
    }

    // Keyboard listener
    document.addEventListener('keydown', function (event) {
        if (event.key === TOGGLE_SHORTCUT.key &&
            event.ctrlKey === TOGGLE_SHORTCUT.ctrlKey &&
            event.altKey === TOGGLE_SHORTCUT.altKey &&
            !event.repeat) {
            event.preventDefault()
            toggleSidebar()
        }
    })
})()