YouTube Row Fixer

The chrome extension for Increasing the videos per row.

Cos'è YouTube Row Fixer?

YouTube Row Fixer è un'estensione di Chrome sviluppata da sapondanaisriwan, e la sua funzione principale è "The chrome extension for Increasing the videos per row.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione YouTube Row Fixer

Scarica i file di estensione YouTube Row Fixer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        The chrome extension for Increasing the videos per row on all pages.

Source Code: https://github.com/sapondanaisriwan/youtube-row-fixer
Bug Report: https://github.com/sapondanaisriwan/youtube-row-fixer/issues                    

Informazioni di Base sull'Estensione

Nome YouTube Row Fixer YouTube Row Fixer
ID kehjfphhkfppnnjhdfhanmehkegdppho
URL Ufficiale https://chromewebstore.google.com/detail/youtube-row-fixer/kehjfphhkfppnnjhdfhanmehkegdppho
Descrizione The chrome extension for Increasing the videos per row.
Dimensione del File 70.62 KB
Conteggio Installazioni 809
Versione Corrente 1.0.4
Ultimo Aggiornamento 2023-12-03
Data di Pubblicazione 2023-06-03
Valutazione 4.41/5 Totale 27 Valutazioni
Sviluppatore sapondanaisriwan
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/sapondanaisriwan/youtube-row-fixer
URL della Pagina di Aiuto https://github.com/sapondanaisriwan/youtube-row-fixer/issues
Lingue Supportate en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "YouTube Row Fixer",
    "description": "The chrome extension for Increasing the videos per row.",
    "version": "1.0.4",
    "permissions": [
        "tabs",
        "storage"
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "16": ".\/asset\/img\/icon-16.png",
        "32": ".\/asset\/img\/icon-32.png",
        "48": ".\/asset\/img\/icon-48.png",
        "64": ".\/asset\/img\/icon-64.png",
        "128": ".\/asset\/img\/icon-128.png"
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                ".\/variables.js",
                ".\/content-script.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "js\/main.js"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    }
}