YouTube Row Fixer

The chrome extension for Increasing the videos per row.

Vad är YouTube Row Fixer?

YouTube Row Fixer är en Chrome-tillägg utvecklad av sapondanaisriwan, och dess huvudfunktion är "The chrome extension for Increasing the videos per row.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner YouTube Row Fixer-förlängningens CRX-fil

Ladda ner YouTube Row Fixer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn YouTube Row Fixer YouTube Row Fixer
ID kehjfphhkfppnnjhdfhanmehkegdppho
Officiell webbadress https://chromewebstore.google.com/detail/youtube-row-fixer/kehjfphhkfppnnjhdfhanmehkegdppho
Beskrivning The chrome extension for Increasing the videos per row.
Filstorlek 70.62 KB
Antal Installationer 809
Aktuell Version 1.0.4
Senast Uppdaterad 2023-12-03
Publiceringsdatum 2023-06-03
Betyg 4.41/5 Totalt 27 Betyg
Utvecklare sapondanaisriwan
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/sapondanaisriwan/youtube-row-fixer
Hjälpsida URL https://github.com/sapondanaisriwan/youtube-row-fixer/issues
Stödda Språk 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"
    }
}