Better Transmission TabsContainer

A userscript to make Transmission-Web's TabsContainer better

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

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

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

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.

(Zateb bir user-style yöneticim var, yükleyeyim!)

// ==UserScript==
// @name         Better Transmission TabsContainer
// @namespace    npm/vite-plugin-monkey
// @version      0.0.4
// @author       Fabio Tea <[email protected]> (iam.f4b.io)
// @description  A userscript to make Transmission-Web's TabsContainer better
// @license      MIT
// @icon         https://cdn.imgchest.com/files/j7kzcn6kwk7.png
// @match        *://*/transmission/web/
// @require      https://cdn.jsdelivr.net/npm/@violentmonkey/dom@2
// @grant        none
// ==/UserScript==

(function () {
  'use strict';

  /*! @violentmonkey/[email protected] | ISC License */
  var _VM;
  Object.assign(typeof VM !== "undefined" && ((_VM = VM) == null ? void 0 : _VM.versions) || {}, {
    dom: "2.1.7"
  });
  function observe(node, callback, options) {
    const observer = new MutationObserver((mutations, ob) => {
      const result = callback(mutations, ob);
      if (result)
        disconnect();
    });
    observer.observe(node, Object.assign({
      childList: true,
      subtree: true
    }, options));
    const disconnect = () => observer.disconnect();
    return disconnect;
  }
  observe(document.body, () => {
    const toolbarInspectorButton = document.querySelector("#toolbar-inspector");
    if (toolbarInspectorButton) {
      toolbarInspectorButton.addEventListener("click", () => {
        const tabsContainer = document.querySelector(".tabs-container");
        if (tabsContainer) {
          tabsContainer.style.resize = "horizontal";
          tabsContainer.style.overflow = "auto";
          tabsContainer.style.width = "900px";
        }
      });
    }
  });

})();