Video-Notes

Your personal youtube notes making assistant

Video-Notes क्या है?

Video-Notes Akshay Kumar द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Your personal youtube notes making assistant"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Video-Notes एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम Video-Notes Video-Notes
ID pinjmkdikinlhdjkkieabffplmdahpia
आधिकारिक URL https://chromewebstore.google.com/detail/video-notes/pinjmkdikinlhdjkkieabffplmdahpia
विवरण Your personal youtube notes making assistant
फ़ाइल का आकार 3.55 MB
स्थापना संख्या 62
वर्तमान संस्करण 1.18
अंतिम अपडेट 2023-12-16
प्रकाशन तिथि 2023-09-17
रेटिंग 5.00/5 कुल 8 रेटिंग्स
डेवलपर Akshay Kumar
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ 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": [
                ""
            ]
        }
    ]
}