Custom YouTube Start Stop

This is a chrome extension that allows you to choose a custom start and stop time for a youtube video you want to watch. It is…

什么是Custom YouTube Start Stop?

Custom YouTube Start Stop是由Jonathan Li开发的Chrome扩展程序,该扩展的主要功能是“This is a chrome extension that allows you to choose a custom start and stop time for a youtube video you want to watch. It is…”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载Custom YouTube Start Stop扩展crx文件

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

扩展使用说明

                        This is a chrome extension that allows you to choose a custom start and stop time for a youtube video you want to watch. It is especially useful for long youtube videos for podcasts or bedtime stories.                    

扩展基本信息

名称 Custom YouTube Start Stop Custom YouTube Start Stop
ID lodhfkhkhdjjicigiinipdkcbbndpbme
官方URL https://chromewebstore.google.com/detail/custom-youtube-start-stop/lodhfkhkhdjjicigiinipdkcbbndpbme
简介 This is a chrome extension that allows you to choose a custom start and stop time for a youtube video you want to watch. It is…
文件大小 31.64 KB
安装次数 39
当前版本 0.1.2
更新时间 2021-05-11
上架时间 2021-05-11
评分 3.00/5 共2次评分
开发者 Jonathan Li
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Custom YouTube Start Stop",
    "version": "0.1.2",
    "offline_enabled": true,
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/watch?v=*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "icons": {
        "19": "img\/icon19.png",
        "38": "img\/icon38.png",
        "16": "img\/icon16.png",
        "24": "img\/icon24.png",
        "32": "img\/icon32.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "page_action": {
        "default_title": "Custom YouTube Start Stop",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab"
    ]
}