No Playlist Autoplay For YouTube

You can turn autoplay off/on for playlists on YouTube. Refresh YouTube after toggling.

什么是No Playlist Autoplay For YouTube?

No Playlist Autoplay For YouTube是由https://thomasrichards.xyz开发的Chrome扩展程序,该扩展的主要功能是“You can turn autoplay off/on for playlists on YouTube. Refresh YouTube after toggling.”。

扩展截图

screenshot

下载No Playlist Autoplay For YouTube扩展crx文件

下载No Playlist Autoplay For YouTube扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        With this extension, when you reach the end of a video in a playlist, the next video is prevented from playing automatically.

Click the extension icon to toggle this behaviour on and off. Refresh YouTube after toggling.

Alternatively use the shortcut (ctrl+shift+y), which can be changed at chrome://extensions/shortcuts.

Source code available via my website.

Enjoy.                    

扩展基本信息

名称 No Playlist Autoplay For YouTube No Playlist Autoplay For YouTube
ID dkokllldoffaconpbmbaofjbadhjggil
官方URL https://chromewebstore.google.com/detail/no-playlist-autoplay-for/dkokllldoffaconpbmbaofjbadhjggil
简介 You can turn autoplay off/on for playlists on YouTube. Refresh YouTube after toggling.
文件大小 22.76 KB
安装次数 5,186
当前版本 65535.65535.65535.8
更新时间 2021-09-12
上架时间 2019-12-31
评分 4.52/5 共113次评分
开发者 https://thomasrichards.xyz
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "author": "Thomas Richards",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "128": "icons\/Pause-128.png",
            "64": "icons\/Pause-64.png",
            "32": "icons\/Pause-32.png"
        },
        "default_title": "Toggle YouTube Playlist Autoplay"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+Y"
            }
        }
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "description": "You can turn autoplay off\/on for playlists on YouTube. Refresh YouTube after toggling.",
    "icons": {
        "128": "icons\/Logo-128.png"
    },
    "name": "No Playlist Autoplay For YouTube",
    "options_page": "options.html",
    "permissions": [
        "storage",
        "*:\/\/*.youtube.com\/*"
    ],
    "version": "65535.65535.65535.8"
}