YouTube Timestamper

Allows you to quickly copy current video/stream timestamp (with offset).

YouTube Timestamper क्या है?

YouTube Timestamper IAmVisco द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allows you to quickly copy current video/stream timestamp (with offset)."।

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

screenshot

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

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

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

                        A small utility tool that allows you to copy current video or stream timestamp.

Icon by Iconpacks.                    

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

नाम YouTube Timestamper YouTube Timestamper
ID fpjlholgdibolbjehinkkmbgodapojmp
आधिकारिक URL https://chromewebstore.google.com/detail/youtube-timestamper/fpjlholgdibolbjehinkkmbgodapojmp
विवरण Allows you to quickly copy current video/stream timestamp (with offset).
फ़ाइल का आकार 16.88 KB
स्थापना संख्या 82
वर्तमान संस्करण 1.3.0
अंतिम अपडेट 2023-06-21
प्रकाशन तिथि 2021-05-07
रेटिंग 5.00/5 कुल 3 रेटिंग्स
डेवलपर IAmVisco
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Timestamper",
    "version": "1.3.0",
    "description": "Allows you to quickly copy current video\/stream timestamp (with offset).",
    "manifest_version": 3,
    "permissions": [
        "tabs",
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": {
            "16": "icons\/icon16.png",
            "32": "icons\/icon32.png"
        },
        "default_title": "YouTube Timestamper"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/watch*",
                "https:\/\/www.youtube.com\/live\/*"
            ],
            "js": [
                "inject-button.js",
                "utils.js"
            ],
            "css": [
                "button.css"
            ]
        }
    ],
    "options_ui": {
        "page": "settings\/index.html"
    },
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "128": "icons\/icon128.png"
    }
}