YTSave

Bookmark Timestamps of YT Videos

YTSave क्या है?

YTSave ashrit-ram-anala द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Bookmark Timestamps of YT Videos"।

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

screenshot
screenshot
screenshot

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

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

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

                        YTSave easily enables users to bookmark timestamps of YouTube videos with 1 click of a button on the YouTube player. YTSave makes it so that you never need to go searching for a part of a video or searching for a video ever again!

Steps:

1. After installation, pin the YTSave icon to your Chrome Menu Bar by clicking on the puzzle piece and clicking the pin icon. 

2. Go to any YouTube video and a new plus button should have appeared on your YouTube player bar. 

3. Clicking the plus button at any timestamp will save your timestamp and video link to your browser. 

4. To see the timestamp, click the YTSave logo next to the puzzle piece on your Chrome Menu Bar to see all of your saved timestamps in one place.
 
5. Clicking on the thumbnail or the title of the video in the extension user interface will bring you back to the timestamp you bookmarked.                    

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

नाम YTSave YTSave
ID peghhndlpmpmoejloomncaioafieipmh
आधिकारिक URL https://chromewebstore.google.com/detail/ytsave/peghhndlpmpmoejloomncaioafieipmh
विवरण Bookmark Timestamps of YT Videos
फ़ाइल का आकार 45.19 KB
स्थापना संख्या 97
वर्तमान संस्करण 1.1
अंतिम अपडेट 2023-10-21
प्रकाशन तिथि 2023-10-17
रेटिंग 5.00/5 कुल 15 रेटिंग्स
डेवलपर ashrit-ram-anala
ईमेल [email protected]
भुगतान के प्रकार free
गोपनीयता नीति पृष्ठ URL https://www.freeprivacypolicy.com/live/4d580bbf-afaf-471a-a9c8-6186bf8edb8a
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YTSave",
    "description": "Bookmark Timestamps of YT Videos",
    "version": "1.1",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/ytb_icon.png",
            "32": "\/images\/ytb_icon.png",
            "48": "\/images\/ytb_icon.png",
            "128": "\/images\/ytb_icon.png"
        }
    },
    "icons": {
        "16": "\/images\/ytb_icon.png",
        "32": "\/images\/ytb_icon.png",
        "48": "\/images\/ytb_icon.png",
        "128": "\/images\/ytb_icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/youtube.com\/*",
                "*:\/\/www.youtube.com\/*",
                "*:\/\/m.youtube.com\/*"
            ],
            "js": [
                "options.js"
            ],
            "css": [
                "content-style.css"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/*.youtube.com\/*"
        ]
    },
    "web_accessible_resources": [
        {
            "resources": [
                "\/images\/bookmark.png"
            ],
            "matches": [
                ""
            ]
        }
    ]
}