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
官方網址 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"
    ]
}