Remove YouTube Autoplay

Isn't YouTube autoplay the worst? This removes it

Remove YouTube Autoplayとは何ですか?

Remove YouTube AutoplayはKareem ElFaramawiによって開発されたChromeの拡張機能で、その主な機能は「Isn't YouTube autoplay the worst? This removes it」です。

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

screenshot
screenshot

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

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

拡張機能の使用方法

                        Simple extension to completely disable and remove the YouTube autoplay feature, which would load another video after the current one ends.

This extension will continue to work if you:
- Delete browser history
- Enter incognito mode (After enabling this option in your extension settings)

Note that this extension only affects videos that would normally show the autoplay switch, this excludes playlists, livestreams, etc.                    

拡張機能の基本情報

名前 Remove YouTube Autoplay Remove YouTube Autoplay
ID afppjndapmkekhnionfccdnajhdnokhj
公式URL https://chromewebstore.google.com/detail/remove-youtube-autoplay/afppjndapmkekhnionfccdnajhdnokhj
説明 Isn't YouTube autoplay the worst? This removes it
ファイルサイズ 1.68 MB
インストール数 848
現在のバージョン 0.1.7
最終更新日 2023-06-05
公開日 2018-10-06
評価 3.57/5 合計 23 レビュー
開発者 Kareem ElFaramawi
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/krx/chrome-delete-youtube-autoplay
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Remove YouTube Autoplay",
    "description": "Isn't YouTube autoplay the worst? This removes it",
    "author": "krx",
    "version": "0.1.7",
    "host_permissions": [
        "http:\/\/www.youtube.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "js\/disableAutoplay.js"
            ],
            "run_at": "document_end"
        }
    ],
    "action": {
        "default_icon": "img\/icon_19.png"
    },
    "icons": {
        "16": "img\/icon_16.png",
        "48": "img\/icon_48.png",
        "64": "img\/icon_64.png",
        "128": "img\/icon_128.png"
    }
}