MoocNote

The new version of MoocNote allows users to take synchronized notes with screenshots directly on YouTube.

什麼是MoocNote?

MoocNote是由https://moocnote.com開發的Chrome擴展程式,該擴展的主要功能是“The new version of MoocNote allows users to take synchronized notes with screenshots directly on YouTube.”。

擴展截圖

screenshot
screenshot
screenshot

下載MoocNote擴展crx文件

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

擴展使用說明

                        Take notes that link back to the appropriate place in the videos. Extra features like screen capture, drawing on the video, copy text from the video. Check your notes anytime, anywhere. All notes are organized in one single place. Simple way to add videos to playlists.                    

擴展基本資訊

名稱 MoocNote MoocNote
ID kngebpnbpehfomchjmjgalceiifmmbch
官方網址 https://chromewebstore.google.com/detail/moocnote/kngebpnbpehfomchjmjgalceiifmmbch
簡介 The new version of MoocNote allows users to take synchronized notes with screenshots directly on YouTube.
檔案大小 351 KB
安裝次數 776
目前版本 2.0.1
更新時間 2024-03-03
上架時間 2019-08-15
評分 4.25/5 共 4 次評分
開發者 https://moocnote.com
電子郵箱 [email protected]
付費類型 free
說明頁面URL https://moocnote.com/contact
隱私政策頁面URL https://moocnote.com/privacy
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "MoocNote",
    "version": "2.0.1",
    "description": "The new version of MoocNote allows users to take synchronized notes with screenshots directly on YouTube.",
    "author": "MoocNote.com",
    "icons": {
        "16": "\/static\/images\/icon_16.png",
        "48": "\/static\/images\/icon_48.png",
        "128": "\/static\/images\/icon_128.png"
    },
    "action": {
        "default_icons": {
            "16": "\/static\/images\/icon_16.png",
            "24": "\/static\/images\/icon_48.png",
            "32": "\/static\/images\/icon_16.png"
        },
        "default_title": "MoocNote",
        "default_popup": "popup\/popup.html"
    },
    "background": {
        "service_worker": "background\/serviceWorker.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "css": [
                "static\/style\/content\/content.youtube.tailwind.css"
            ],
            "js": [
                "content\/content.youtube.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.moocnote.com\/*",
                "*:\/\/moocnote\/*",
                "*:\/\/moocnote.local\/*"
            ],
            "css": [
                "static\/style\/content\/content.moocnote.tailwind.css"
            ],
            "js": [
                "content\/content.moocnote.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "declarativeNetRequest",
        "cookies",
        "tabs"
    ],
    "host_permissions": [
        "*:\/\/*.youtube.com\/*",
        "*:\/\/youtube.com\/*",
        "*:\/\/*.googlevideo.com\/*",
        "*:\/\/*.moocnote.com\/*",
        "*:\/\/moocnote\/*",
        "*:\/\/api.moocnote\/*",
        "*:\/\/moocnote.local\/*",
        "*:\/\/api.moocnote.local\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "static\/*"
            ],
            "matches": [
                "*:\/\/*.youtube.com\/*",
                "*:\/\/youtube.com\/*",
                "*:\/\/*.moocnote.com\/*",
                "*:\/\/moocnote\/*",
                "*:\/\/moocnote.local\/*"
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    }
}