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

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}