Siderite's Bookmark Explorer

Navigate through bookmark folders on a single page

Siderite's Bookmark Explorerคืออะไร?

Siderite's Bookmark Explorer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://siderite.dev และคุณลักษณะหลักของมันคือ "Navigate through bookmark folders on a single page"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Siderite's Bookmark Explorer

ดาวน์โหลดไฟล์ส่วนขยาย Siderite's Bookmark Explorer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Move between bookmarks in a Chrome bookmark folder with ease, using keyboard shortcuts, context menus or buttons. The next site in the folder will be preloaded while you read the current one. Quickly bookmark HTML links directly in a Read Later folder, from which you can explore with the extension.

It offers bookmark management, delete, undelete, import/export links and many other features. It does not connect to any external servers, does not serve ads and it's completely free.

Instead of opening a million browser tabs and having everything be slow and low on resources, just bookmark all tabs in a folder, then read them one by one. Instead of having to open all pages you want to bookmark, just right click on links and add them to the Read Later folder. Makes reading the news or doing research comfortable and quick.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Siderite's Bookmark Explorer Siderite's Bookmark Explorer
ID dagpgdabbmfgcaibfbmolkebimebalnb
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/siderites-bookmark-explor/dagpgdabbmfgcaibfbmolkebimebalnb
คำอธิบาย Navigate through bookmark folders on a single page
ขนาดไฟล์ 93.48 KB
จำนวนการติดตั้ง 231
เวอร์ชันปัจจุบัน 3.0.5
อัปเดตครั้งล่าสุด 2019-10-29
วันที่เผยแพร่ 2019-10-29
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา https://siderite.dev
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://siderite.dev/blog/chrome-extension-bookmark-explorer.html/
URL หน้านโยบายความเป็นส่วนตัว https://www.freeprivacypolicy.com/live/848ecff6-1db4-4f20-9cec-052b3c296aac
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Siderite's Bookmark Explorer",
    "description": "Navigate through bookmark folders on a single page",
    "version": "3.0.5",
    "permissions": [
        "tabs",
        "activeTab",
        "bookmarks",
        "contextMenus",
        "notifications",
        "chrome:\/\/favicon\/",
        "storage",
        "unlimitedStorage"
    ],
    "browser_action": {
        "default_icon": {
            "19": "icon.png"
        },
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "apiWrapper.js",
            "bookmarkExplorer.js",
            "background.js"
        ],
        "persistent": false
    },
    "options_ui": {
        "page": "settings.html",
        "chrome_style": true
    },
    "commands": {
        "prevBookmark": {
            "suggested_key": {
                "default": "Ctrl+Shift+K"
            },
            "description": "Navigate to previous bookmark in the folder"
        },
        "nextBookmark": {
            "suggested_key": {
                "default": "Ctrl+Shift+L"
            },
            "description": "Navigate to next bookmark in the folder"
        },
        "skipBookmark": {
            "description": "Skip this bookmark in its folder"
        }
    },
    "icons": {
        "16": "icon.png",
        "128": "bigIcon.png"
    }
}