Bookmark Manager

Bookmark sites, images, and videos to a gallery. Supports downloading videos from most sites.

Bookmark Manager क्या है?

Bookmark Manager Tanishq Iyer द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Bookmark sites, images, and videos to a gallery. Supports downloading videos from most sites."।

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        This extension allows you to bookmark your favorite sites, images, and videos. Instead of keeping a long list of unorganized bookmarks, you can add them to a visually appealing and navigable gallery. Simply open the context menu on a webpage, an image, or a video to bookmark it. Add tags to your bookmarks and quickly find them through a simple search interface. You can also download videos you bookmark. Most videos can be downloaded. Due to chrome store policy, youtube videos cannot be downloaded, although they can still be bookmarked.                    

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

नाम Bookmark Manager Bookmark Manager
ID bpbkeoboacafeolmjaidheedfeapfike
आधिकारिक URL https://chromewebstore.google.com/detail/bookmark-manager/bpbkeoboacafeolmjaidheedfeapfike
विवरण Bookmark sites, images, and videos to a gallery. Supports downloading videos from most sites.
फ़ाइल का आकार 214 KB
स्थापना संख्या 11
वर्तमान संस्करण 2.0.0
अंतिम अपडेट 2023-05-19
प्रकाशन तिथि 2019-06-03
रेटिंग 3.00/5 कुल 1 रेटिंग्स
डेवलपर Tanishq Iyer
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "short_name": "Bookmark Manager",
    "name": "Bookmark Manager",
    "version": "2.0.0",
    "minimum_chrome_version": "88",
    "description": "Bookmark sites, images, and videos to a gallery. Supports downloading videos from most sites.",
    "icons": {
        "16": "icons\/icon.png",
        "48": "icons\/icon.png",
        "128": "icons\/icon.png"
    },
    "permissions": [
        "activeTab",
        "scripting",
        "storage",
        "contextMenus",
        "downloads"
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "scanner.js"
            ]
        }
    ],
    "action": {
        "default_title": "Bookmark Manager"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "popup.html"
            ],
            "matches": [
                ""
            ]
        }
    ]
}