YouTube TimeSlider

Set persistent start and end times for any YouTube video.

YouTube TimeSliderとは何ですか?

YouTube TimeSliderはPaul Berryによって開発されたChromeの拡張機能で、その主な機能は「Set persistent start and end times for any YouTube video.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot

YouTube TimeSlider拡張機能のCRXファイルをダウンロード

YouTube TimeSlider拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Set start and end times for any YouTube video with a simple slider.

Useful for music videos where you want to skip the beginning/end of the video (annoying intros, outros etc.).

Instructions:
- Drag to set the sliders to the desired positions.
- Click the 'Save' button below the slider to save the positions for the current video.
- Next time you load up the video, it will automatically start and end at the times you specified.
- The 'Reset' button will remove the saved times from that video.
- The 'End here' button will set the end time to the current video time.

Extra Features:
- Automatic syncing of times between devices
- Optional Import/Export/Delete options in popup menu

Works with:
 - Single videos
 - Playlists
 - Looped videos
 - Autoplay                    

拡張機能の基本情報

名前 YouTube TimeSlider YouTube TimeSlider
ID gmohlfoielefdlnemadaomfpegpengjn
公式URL https://chromewebstore.google.com/detail/youtube-timeslider/gmohlfoielefdlnemadaomfpegpengjn
説明 Set persistent start and end times for any YouTube video.
ファイルサイズ 27.08 KB
インストール数 45
現在のバージョン 3.3
最終更新日 2022-05-16
公開日 2017-12-31
評価 5.00/5 合計 1 レビュー
開発者 Paul Berry
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube TimeSlider",
    "description": "Set persistent start and end times for any YouTube video.",
    "version": "3.3",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "optional_permissions": [
        "downloads"
    ],
    "background": {
        "service_worker": "\/background\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "run_at": "document_start",
            "css": [
                "\/content\/content.css",
                "\/res\/nouislider.min.css"
            ],
            "js": [
                "\/content\/content.js",
                "\/res\/nouislider.min.js"
            ]
        }
    ],
    "action": {
        "default_popup": "\/popup\/popup.html",
        "default_icon": {
            "16": "\/images\/icon16.png",
            "32": "\/images\/icon32.png",
            "48": "\/images\/icon48.png",
            "128": "\/images\/icon128.png"
        }
    },
    "icons": {
        "16": "\/images\/icon16.png",
        "32": "\/images\/icon32.png",
        "48": "\/images\/icon48.png",
        "128": "\/images\/icon128.png"
    }
}