Bookmark Manager

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

什麼是Bookmark Manager?

Bookmark Manager是由Tanishq Iyer開發的Chrome擴展程式,該擴展的主要功能是“Bookmark sites, images, and videos to a gallery. Supports downloading videos from most sites.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載Bookmark Manager擴展crx文件

下載Bookmark Manager擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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": [
                ""
            ]
        }
    ]
}