YouTube Bookmarker

Bookmark important points in a YouTube video. Edit Bookmark title. Share bookmark link. Start play from bookmark etc

YouTube Bookmarker क्या है?

YouTube Bookmarker bharat7gupta द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Bookmark important points in a YouTube video. Edit Bookmark title. Share bookmark link. Start play from bookmark etc"।

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

screenshot
screenshot

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

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

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

                        Add bookmarks to YouTube videos and get easier access to the bookmarks on subsequent access to those videos. User of this extension can edit/add a meaningful description to each bookmark to make the bookmarks legible and get quicker overview of different important points in a YouTube video.

User can also start playback of video from a bookmark, copy and share link of a bookmark to enable playback from that point of the video and also delete bookmarks if its not needed anymore. All of this from a single extension popup.                    

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

नाम YouTube Bookmarker YouTube Bookmarker
ID fnpjllldbpafaicnbgakpokibefgdeim
आधिकारिक URL https://chromewebstore.google.com/detail/youtube-bookmarker/fnpjllldbpafaicnbgakpokibefgdeim
विवरण Bookmark important points in a YouTube video. Edit Bookmark title. Share bookmark link. Start play from bookmark etc
फ़ाइल का आकार 45.47 KB
स्थापना संख्या 641
वर्तमान संस्करण 1.1
अंतिम अपडेट 2020-03-25
प्रकाशन तिथि 2020-03-25
रेटिंग 4.00/5 कुल 4 रेटिंग्स
डेवलपर bharat7gupta
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Bookmarker",
    "version": "1.1",
    "description": "Bookmark important points in a YouTube video. Edit Bookmark title. Share bookmark link. Start play from bookmark etc",
    "permissions": [
        "storage",
        "tabs",
        "https:\/\/*.youtube.com\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "css": [
                "styles.css"
            ],
            "js": [
                "contentScript.js",
                "common.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "icons\/bookmark.png",
        "icons\/edit.png",
        "icons\/play.png",
        "icons\/copy-link.png",
        "icons\/delete.png",
        "icons\/save.png"
    ],
    "browser_action": {
        "default_icon": {
            "16": "icons\/youtube-bookmarker-32.png",
            "24": "icons\/youtube-bookmarker-32.png",
            "32": "icons\/youtube-bookmarker-32.png"
        },
        "default_title": "YouTube Bookmarker",
        "default_popup": "popup.html"
    },
    "manifest_version": 2
}