TubeMark

Bookmark and take notes on YouTube timeline.

TubeMark क्या है?

TubeMark chaosifier द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Bookmark and take notes on YouTube timeline."।

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

screenshot

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

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

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

                        As the name suggests, this extension allows you to bookmark timelines in YouTube, and take notes.                    

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

नाम TubeMark TubeMark
ID lhpnjmlibhnkegajheajbkcmdjglaljo
आधिकारिक URL https://chrome.google.com/webstore/detail/tubemark/lhpnjmlibhnkegajheajbkcmdjglaljo
विवरण Bookmark and take notes on YouTube timeline.
फ़ाइल का आकार 91.5 KB
स्थापना संख्या 22
वर्तमान संस्करण 1.0.1
अंतिम अपडेट 2020-11-17
प्रकाशन तिथि 2020-11-13
रेटिंग 3.25/5 कुल 4 रेटिंग्स
डेवलपर chaosifier
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/chaosifier/TubeMark
सहायता पृष्ठ URL https://github.com/chaosifier/TubeMark/issues
गोपनीयता नीति पृष्ठ URL https://github.com/chaosifier/TubeMark/blob/master/chrome-extensions.md
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "TubeMark",
    "description": "Bookmark and take notes on YouTube timeline.",
    "version": "1.0.1",
    "author": "Sagar Dahal",
    "browser_action": {
        "default_icon": "ic_launcher.png",
        "default_title": "TubeMark"
    },
    "permissions": [
        "activeTab",
        "storage",
        "https:\/\/www.youtube.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "icons": {
        "256": "ic_launcher.png"
    },
    "web_accessible_resources": [
        "mainPage.html"
    ]
}