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
官方網址 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
電子郵箱 [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"
    }
}