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": [
                ""
            ]
        }
    ]
}