Bookmark Manager

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

Что такое Bookmark Manager?

Bookmark Manager - это расширение Chrome, разработанное Tanishq Iyer, и его основная функция - "Bookmark sites, images, and videos to a gallery. Supports downloading videos from most sites.".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Bookmark Manager

Скачайте файлы расширений 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
Официальный 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": [
                ""
            ]
        }
    ]
}