YouTube Autoplay Disabler

Extension to disable YouTube's autoplay 'feature'. This implementation is pragmatic, so no fancy code: we just get the job done.

YouTube Autoplay Disablerとは何ですか?

YouTube Autoplay DisablerはLuciano Ratameroによって開発されたChromeの拡張機能で、その主な機能は「Extension to disable YouTube's autoplay 'feature'. This implementation is pragmatic, so no fancy code: we just get the job done.」です。

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

screenshot

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

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

拡張機能の使用方法

                        Free and open-sourced alternative for disabling YouTube's autoplay "feature"

Checks if YouTube autoplay is on and, if it is, disables it.

https://github.com/lucianoratamero/youtube-autoplay-disabler                    

拡張機能の基本情報

名前 YouTube Autoplay Disabler YouTube Autoplay Disabler
ID mlebignjhimfeggkjhhgbhomibiplmem
公式URL https://chromewebstore.google.com/detail/youtube-autoplay-disabler/mlebignjhimfeggkjhhgbhomibiplmem
説明 Extension to disable YouTube's autoplay 'feature'. This implementation is pragmatic, so no fancy code: we just get the job done.
ファイルサイズ 366 KB
インストール数 161
現在のバージョン 0.2.1
最終更新日 2021-04-29
公開日 2018-06-15
評価 3.12/5 合計 17 レビュー
開発者 Luciano Ratamero
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Autoplay Disabler",
    "description": "Extension to disable YouTube's autoplay 'feature'. This implementation is pragmatic, so no fancy code: we just get the job done.",
    "version": "0.2.1",
    "icons": {
        "128": "icon-small.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "browser_action": {
        "default_icon": "icon-small.png"
    }
}