Video-Notes

Your personal youtube notes making assistant

Video-Notes là gì?

Video-Notes là một tiện ích mở rộng Chrome được phát triển bởi Akshay Kumar, và tính năng chính của nó là "Your personal youtube notes making assistant".

Ả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 Video-Notes

Tải xuống các tệp mở rộng Video-Notes 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

                        Video-Notes is a smart notes taking solution for online learners while watching youtube videos.

Along with writing notes You can take video clips & screenshots along with the timestamp while watching the video.

The downloaded notes are viewable in any device. You can transfer the notes using whatsapp-web or google drive and open them in any internet browser.

The extension is completely free.

What's New ?

Google Drive Integeration
This feature enables you to maintain all your notes in one centralized and organized location.                    

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

Tên Video-Notes Video-Notes
ID pinjmkdikinlhdjkkieabffplmdahpia
URL Chính Thức https://chromewebstore.google.com/detail/video-notes/pinjmkdikinlhdjkkieabffplmdahpia
Mô tả Your personal youtube notes making assistant
Kích Thước Tệp 3.55 MB
Số Lần Cài Đặt 62
Phiên Bản Hiện Tại 1.18
Cập Nhật Lần Cuối 2023-12-16
Ngày Phát Hành 2023-09-17
Đánh Giá 5.00/5 Tổng số 8 Đánh Giá
Nhà Phát Triển Akshay Kumar
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Video-Notes",
    "version": "1.18",
    "description": "Your personal youtube notes making assistant",
    "action": {
        "default_popup": "index.html"
    },
    "oauth2": {
        "client_id": "926015470115-hukteq61217rbo79omj08b7bfc2n2mua.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/www.googleapis.com\/auth\/drive.file",
            "https:\/\/www.googleapis.com\/auth\/userinfo.profile"
        ]
    },
    "permissions": [
        "storage",
        "identity"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "48": "notes.png"
    },
    "background": {
        "matches": [
            ""
        ],
        "service_worker": "background.js"
    },
    "dependencies": {
        "google-apis": "latest"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "assets"
            ],
            "matches": [
                ""
            ]
        }
    ]
}