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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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": [
                ""
            ]
        }
    ]
}