Better Bookmarker

Save the current page: pick a bookmark folder from a searchable list

Better Bookmarkerคืออะไร?

Better Bookmarker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://mythical5th.com และคุณลักษณะหลักของมันคือ "Save the current page: pick a bookmark folder from a searchable list"

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Better Bookmarker

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

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

                        Each bookmark folder is presented with its full path in an ordered, searchable list. You can easily...

· Find the folder you want
· Create a new subfolder if necessary
· Bookmark the current page in that folder
· Edit the bookmark's title and address


Open the Popup: Alt+B
Choose another shortcut: chrome://extensions/shortcuts


Credit:
"node-diacritics" by Andrew Kelley, licensed under the MIT License (Expat)
https://github.com/andrewrk/node-diacritics/blob/master/index.js                    

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

ชื่อ Better Bookmarker Better Bookmarker
ID ighoahmfodeijcamlhoodoglhjdcgflf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/better-bookmarker/ighoahmfodeijcamlhoodoglhjdcgflf
คำอธิบาย Save the current page: pick a bookmark folder from a searchable list
ขนาดไฟล์ 58.82 KB
จำนวนการติดตั้ง 17
เวอร์ชันปัจจุบัน 1.3
อัปเดตครั้งล่าสุด 2024-02-09
วันที่เผยแพร่ 2019-01-30
คะแนน 4.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา https://mythical5th.com
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว http://mythical5th.com/policies/chromeWebStore.html
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "1.3",
    "name": "__MSG_extName__",
    "description": "__MSG_extDesc__",
    "short_name": "bookmarker",
    "default_locale": "en",
    "minimum_chrome_version": "117",
    "action": {
        "default_icon": {
            "16": "icons\/icon16-white.png",
            "32": "icons\/icon32-white.png"
        },
        "default_title": "__MSG_extName__",
        "default_popup": "popup\/popup.html"
    },
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Alt+B"
            }
        }
    },
    "icons": {
        "16": "icons\/icon16-yellow.png",
        "32": "icons\/icon32-yellow.png",
        "48": "icons\/icon48-yellow.png",
        "128": "icons\/icon128-yellow.png"
    },
    "permissions": [
        "activeTab",
        "bookmarks",
        "declarativeContent"
    ],
    "background": {
        "service_worker": "sw.js",
        "type": "module"
    }
}