YouTube Row Fixer

The chrome extension for Increasing the videos per row.

What is YouTube Row Fixer?

YouTube Row Fixer is a Chrome extension developed by sapondanaisriwan, and its main feature is "The chrome extension for Increasing the videos per row.".

Extension Screenshots

screenshot
screenshot

Download YouTube Row Fixer Extension CRX File

Download YouTube Row Fixer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name YouTube Row Fixer YouTube Row Fixer
ID kehjfphhkfppnnjhdfhanmehkegdppho
Official URL https://chromewebstore.google.com/detail/youtube-row-fixer/kehjfphhkfppnnjhdfhanmehkegdppho
Description The chrome extension for Increasing the videos per row.
File Size 70.62 KB
Installation Count 809
Current Version 1.0.4
Last Updated 2023-12-03
Publish Date 2023-06-03
Rating 4.41/5 Total 27 Ratings
Developer sapondanaisriwan
Email [email protected]
Payment Type free
Extension Website https://github.com/sapondanaisriwan/youtube-row-fixer
Help Page URL https://github.com/sapondanaisriwan/youtube-row-fixer/issues
Supported Languages 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"
    }
}