TubeMark

Bookmark and take notes on YouTube timeline.

Apa itu TubeMark?

TubeMark adalah ekstensi Chrome yang dikembangkan oleh chaosifier, dan fitur utamanya adalah "Bookmark and take notes on YouTube timeline.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi TubeMark

Unduh file ekstensi TubeMark dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama TubeMark TubeMark
ID lhpnjmlibhnkegajheajbkcmdjglaljo
URL Resmi https://chrome.google.com/webstore/detail/tubemark/lhpnjmlibhnkegajheajbkcmdjglaljo
Deskripsi Bookmark and take notes on YouTube timeline.
Ukuran File 91.5 KB
Jumlah Instalasi 22
Versi Saat Ini 1.0.1
Terakhir Diperbarui 2020-11-17
Tanggal Publikasi 2020-11-13
Penilaian 3.25/5 Total 4 Penilaian
Pengembang chaosifier
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/chaosifier/TubeMark
URL Halaman Bantuan https://github.com/chaosifier/TubeMark/issues
URL Halaman Kebijakan Privasi https://github.com/chaosifier/TubeMark/blob/master/chrome-extensions.md
Bahasa yang Didukung 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"
    ]
}