YouTube TimeSlider

Set persistent start and end times for any YouTube video.

YouTube TimeSlider क्या है?

YouTube TimeSlider Paul Berry द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Set persistent start and end times for any YouTube video."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में YouTube TimeSlider एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
ईमेल [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"
    }
}