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…」です。
拡張機能のスクリーンショット
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.                     拡張機能の基本情報
| 名前 |   |  
| 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 | 
| Eメール | [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"
    ]
}  |  |