1-click quality for Twitch

Adds buttons to change qualities with one click.

1-click quality for Twitch là gì?

1-click quality for Twitch là một tiện ích mở rộng Chrome được phát triển bởi Xuxa, và tính năng chính của nó là "Adds buttons to change qualities with one click.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng 1-click quality for Twitch

Tải xuống các tệp mở rộng 1-click quality for Twitch dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Adds buttons below the stream so it lets you change qualities with just one click.

The On/Off switch saves the last quality setting, so that when you open new streams, that quality will be selected from the get go if it's available. If it's off, it uses the last quality saved from when it was on or if you selected it through Twitch's own quality options.

I tend to hop back and forth a lot of streams running in the background, but leave all them running in 160p to save PC load. It was something I did for this exact purpose and thought someone else might think it's useful.

1.2:
    Fix: Buttons are realigned properly when the window is resized.
    Fix: The saved options were reset in certain occasions.
    Added button text and background colors.
    Added automatically mute and unmute settings when clicking on the lowest and highest qualities.
    The above option, if enabled, is ignored in case the buttons are clicked while holding CTRL.
    Added the Turkish, Hindi, Simplified Chinese, Traditional Chinese and Korean languages.

1.1.7: Fix: sometimes buttons wouldn't update or show up
1.1.6: Fix: buttons weren't updating when a stream re-started without leaving the page.
1.1.4: Fix: granted "tabs" permission to chrome, messageTwitchTabs function had a minor issue.
1.1.3: Fix: chrome.app got removed and broke the extension.
1.1.2: Fix: getStorage wouldn't return single values correctly.
1.1.1:  Fixed spacing bug from v1.1, added animation toggle option.
1.1:  Added position, scale and language customization.

--

Adiciona botões abaixo do stream que permitem trocar de qualidade com um clique só.

O botão de liga e desliga salva a última qualidade e quando um novo stream é aberto, ele inicia com a qualidade salva se estiver disponível. Se está desligado, a última qualidade salva ou a qualidade selecionada com o menu do Twitch será usada.

Eu fico trocando de streams direto que tão abertos, mas deixo todos em 160p pra não torrar o PC. Foi algo que fiz exatamente com esse propósito e achei que mais alguém poderia achar útil.

1.2:
    Fix: Os botões corrigem a posição quando a tela é redimensionada.
    Fix: As opções salvas eram resetadas em certas ocasiões.
    Adicionado cores de texto e fundo para os botões.
    Adicionado opções de mutar e desmutar automatiacamente na menor e maior qualidade.
    A opção acima, caso esteja ligada, é ignorada quando o botão é pressionado segurando a tecla CTRL.
    Adicionado as línguas Turco, Hindi, Chinês Simplificado, Chinês Tradicional e Coreano.

1.1.7: Fix: algumas vezes os botões não atualizavam ou apareciam
1.1.6: Fix: os botões não atualizavam quando o stream era reaberto sem mudar de página.
1.1.4: Fix: adicionado a permissão "tabs" pro chrome, messageTwitchTabs tinha um errinho.
1.1.3: Fix: chrome.app foi removido e a extensão parou de funcionar.
1.1.2: Fix: getStorage não retornava um só valor corretamente.
1.1.1: Corrigido um bug de espaçamento da v1.1, adicionado um botão para ativar e desativar a animação.
1.1:  Adicionado configurações de posição, tamanho e idioma.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên 1-click quality for Twitch 1-click quality for Twitch
ID fbkmhkieemhbfhlhjncdjbkleijfaiif
URL Chính Thức https://chromewebstore.google.com/detail/1-click-quality-for-twitc/fbkmhkieemhbfhlhjncdjbkleijfaiif
Mô tả Adds buttons to change qualities with one click.
Kích Thước Tệp 488 KB
Số Lần Cài Đặt 729
Phiên Bản Hiện Tại 1.2
Cập Nhật Lần Cuối 2024-02-23
Ngày Phát Hành 2021-12-09
Đánh Giá 5.00/5 Tổng số 9 Đánh Giá
Nhà Phát Triển Xuxa
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/nimeco/twitch-1-click-quality
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Adds buttons to change qualities with one click.",
    "manifest_version": 3,
    "name": "1-click quality for Twitch",
    "version": "1.2",
    "icons": {
        "48": "icons\/quality-48.png",
        "96": "icons\/quality-96.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "https:\/\/*.twitch.tv\/*"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "resource.js"
            ],
            "matches": [
                "https:\/\/*.twitch.tv\/*"
            ]
        }
    ],
    "action": {
        "default_title": "1-click quality",
        "default_icon": "icons\/quality-32.png",
        "default_popup": "popup\/config.html"
    },
    "permissions": [
        "storage",
        "tabs"
    ]
}