Youtube Timestamp

Save youtube videos with exact timestamps for later.

Youtube Timestamp क्या है?

Youtube Timestamp kirill17910 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Save youtube videos with exact timestamps for later."।

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

screenshot

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

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

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

                        This is a small extension for saving YouTube videos with exact timestamp. You can find all your saved videos, by clicking on the extension. If you save a video that is already on your saved list, only the timestamp will update. You can right click on saved videos to delete them.

This is an open source project, and all source code can be found on GitHub. 
https://github.com/kotikkir9/Youtube 

Changes:
27/12/2022 - Added new animated delete button.                    

एक्सटेंशन की मूल जानकारी

नाम Youtube Timestamp Youtube Timestamp
ID ciognandfojfcelnokkgaapgmafciekl
आधिकारिक URL https://chromewebstore.google.com/detail/youtube-timestamp/ciognandfojfcelnokkgaapgmafciekl
विवरण Save youtube videos with exact timestamps for later.
फ़ाइल का आकार 11.57 KB
स्थापना संख्या 179
वर्तमान संस्करण 1.1
अंतिम अपडेट 2022-12-28
प्रकाशन तिथि 2022-05-24
रेटिंग 5.00/5 कुल 4 रेटिंग्स
डेवलपर kirill17910
ईमेल [email protected]
भुगतान के प्रकार free
सहायता पृष्ठ URL https://github.com/kotikkir9/Youtube
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Timestamp",
    "description": "Save youtube videos with exact timestamps for later.",
    "version": "1.1",
    "manifest_version": 3,
    "background": {
        "service_worker": ".\/src\/background.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": ".\/images\/icon.png",
            "32": ".\/images\/icon.png",
            "38": ".\/images\/icon.png",
            "128": ".\/images\/icon.png"
        }
    },
    "icons": {
        "16": ".\/images\/icon.png",
        "32": ".\/images\/icon.png",
        "38": ".\/images\/icon.png",
        "128": ".\/images\/icon.png"
    },
    "permissions": [
        "storage",
        "scripting",
        "tabs"
    ],
    "host_permissions": [
        "http:\/\/www.youtube.com\/*",
        "https:\/\/www.youtube.com\/*"
    ]
}