Better Bookmarker

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

什麼是Better Bookmarker?

Better Bookmarker是由https://mythical5th.com開發的Chrome擴展程式,該擴展的主要功能是“Save the current page: pick a bookmark folder from a searchable list”。

擴展截圖

screenshot
screenshot
screenshot

下載Better Bookmarker擴展crx文件

下載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
官方網址 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"
    }
}