YouTube Row Fixer

The chrome extension for Increasing the videos per row.

YouTube Row Fixerとは何ですか?

YouTube Row Fixerはsapondanaisriwanによって開発されたChromeの拡張機能で、その主な機能は「The chrome extension for Increasing the videos per row.」です。

拡張機能のスクリーンショット

screenshot
screenshot

YouTube Row Fixer拡張機能のCRXファイルをダウンロード

YouTube Row Fixer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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                    

拡張機能の基本情報

名前 YouTube Row Fixer YouTube Row Fixer
ID kehjfphhkfppnnjhdfhanmehkegdppho
公式URL https://chromewebstore.google.com/detail/youtube-row-fixer/kehjfphhkfppnnjhdfhanmehkegdppho
説明 The chrome extension for Increasing the videos per row.
ファイルサイズ 70.62 KB
インストール数 809
現在のバージョン 1.0.4
最終更新日 2023-12-03
公開日 2023-06-03
評価 4.41/5 合計 27 レビュー
開発者 sapondanaisriwan
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/sapondanaisriwan/youtube-row-fixer
ヘルプページのURL https://github.com/sapondanaisriwan/youtube-row-fixer/issues
対応言語 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"
    }
}