TubeMark

Bookmark and take notes on YouTube timeline.

What is TubeMark?

TubeMark is a Chrome extension developed by chaosifier, and its main feature is "Bookmark and take notes on YouTube timeline.".

Extension Screenshots

screenshot

Download TubeMark Extension CRX File

Download TubeMark extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name TubeMark TubeMark
ID lhpnjmlibhnkegajheajbkcmdjglaljo
Official URL https://chrome.google.com/webstore/detail/tubemark/lhpnjmlibhnkegajheajbkcmdjglaljo
Description Bookmark and take notes on YouTube timeline.
File Size 91.5 KB
Installation Count 22
Current Version 1.0.1
Last Updated 2020-11-17
Publish Date 2020-11-13
Rating 3.25/5 Total 4 Ratings
Developer chaosifier
Email [email protected]
Payment Type free
Extension Website https://github.com/chaosifier/TubeMark
Help Page URL https://github.com/chaosifier/TubeMark/issues
Privacy Policy Page URL https://github.com/chaosifier/TubeMark/blob/master/chrome-extensions.md
Supported Languages 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"
    ]
}