YouTube Row Fixer

The chrome extension for Increasing the videos per row.

Qu'est-ce que YouTube Row Fixer ?

YouTube Row Fixer est une extension Chrome développée par sapondanaisriwan, et sa fonction principale est "The chrome extension for Increasing the videos per row.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension YouTube Row Fixer

Téléchargez les fichiers d'extension YouTube Row Fixer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom YouTube Row Fixer YouTube Row Fixer
ID kehjfphhkfppnnjhdfhanmehkegdppho
URL Officiel https://chromewebstore.google.com/detail/youtube-row-fixer/kehjfphhkfppnnjhdfhanmehkegdppho
Description The chrome extension for Increasing the videos per row.
Taille du Fichier 70.62 KB
Nombre d'Installations 809
Version Actuelle 1.0.4
Dernière Mise à Jour 2023-12-03
Date de Publication 2023-06-03
Évaluation 4.41/5 Total 27 Évaluations
Développeur sapondanaisriwan
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/sapondanaisriwan/youtube-row-fixer
URL de la Page d'Aide https://github.com/sapondanaisriwan/youtube-row-fixer/issues
Langues Prises en Charge 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"
    }
}