TubeMark

Bookmark and take notes on YouTube timeline.

什麼是TubeMark?

TubeMark是由chaosifier開發的Chrome擴展程式,該擴展的主要功能是“Bookmark and take notes on YouTube timeline.”。

擴展截圖

screenshot

下載TubeMark擴展crx文件

下載TubeMark擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

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

擴展基本資訊

名稱 TubeMark TubeMark
ID lhpnjmlibhnkegajheajbkcmdjglaljo
官方網址 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"
    ]
}