MoocNote

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

MoocNote là gì?

MoocNote là một tiện ích mở rộng Chrome được phát triển bởi https://moocnote.com, và tính năng chính của nó là "The new version of MoocNote allows users to take synchronized notes with screenshots directly on YouTube.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng MoocNote

Tải xuống các tệp mở rộng MoocNote dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên MoocNote MoocNote
ID kngebpnbpehfomchjmjgalceiifmmbch
URL Chính Thức https://chromewebstore.google.com/detail/moocnote/kngebpnbpehfomchjmjgalceiifmmbch
Mô tả The new version of MoocNote allows users to take synchronized notes with screenshots directly on YouTube.
Kích Thước Tệp 351 KB
Số Lần Cài Đặt 776
Phiên Bản Hiện Tại 2.0.1
Cập Nhật Lần Cuối 2024-03-03
Ngày Phát Hành 2019-08-15
Đánh Giá 4.25/5 Tổng số 4 Đánh Giá
Nhà Phát Triển https://moocnote.com
Email [email protected]
Loại Thanh Toán free
URL Trang Trợ Giúp https://moocnote.com/contact
URL Trang Chính Sách Bảo Mật https://moocnote.com/privacy
Ngôn Ngữ Được Hỗ Trợ 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'"
    }
}