Quick Bookmark

Easily add bookmarks to any category. Includes spotlight-like search with mouse/keyboard support. Default key: cmd+b (win:ctrl+b)

Quick Bookmark란 무엇입니까?

Quick Bookmark은(는) fangxing204에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Easily add bookmarks to any category. Includes spotlight-like search with mouse/keyboard support. Default key: cmd+b (win:ctrl+b)"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Quick Bookmark 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Github: https://github.com/fffx/quick-bookmark
 * Easily bookmark page to any folder
 * Support Chinese pinyin
 * Support new Folder by search parent folder

## [v1.3.8] - 2021-01-12
### Added
- Create folder at the top of the list.

## [v1.3.7] - 2021-01-12
### Added
- Hold Shift key to save root url(domain) only
### Fixed
- Fix mouse click not working


## [v1.3.6] - 2021-01-12
### Added
- Update license
- Show current tab bookmark count in icon badge 
- Fix only github release action, only release on `v*` tags
- Ignore hashtag when compare bookmark url
- Update Icon with outline & fill
- Support new Folder under searched folders

## [v1.3.5] - 2020-12-26
### Added
- Add github action for release and upload build assets
- Debounce scroll
### Fixd
- Fix Nested folder name when depth > 2

## [v1.3.4] - 2020-12-24
### Added
- Pinyin support by https://github.com/creeperyang/pinyin
- Add Folder icon
- Support Choose root folder when new Folder
- Sort bookmark that contained current tab to first position


## [v1.3.3] - 2020-12-12

- Initial transport [chrome-better-bookmark](https://github.com/ardcore/chrome-better-bookmark) into React version, use [web-extension-starter](https://github.com/abhijithvijayan/web-extension-starter/tree/react-javascript)                    

확장 프로그램 기본 정보

이름 Quick Bookmark Quick Bookmark
ID bbjekmkfbdemdbfkckbakmmiceppjkdc
공식 URL https://chromewebstore.google.com/detail/quick-bookmark/bbjekmkfbdemdbfkckbakmmiceppjkdc
설명 Easily add bookmarks to any category. Includes spotlight-like search with mouse/keyboard support. Default key: cmd+b (win:ctrl+b)
파일 크기 78.07 KB
설치 횟수 26
현재 버전 1.3.8
최근 업데이트 2021-06-28
출시 날짜 2020-12-26
평점 4.00/5 총 2 개의 평점
개발자 fangxing204
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/fffx/quick-bookmark
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Quick Bookmark",
    "version": "1.3.8",
    "icons": {
        "16": "assets\/icons\/bookmark.png",
        "32": "assets\/icons\/bookmark.png",
        "48": "assets\/icons\/bookmark.png",
        "128": "assets\/icons\/bookmark.png"
    },
    "description": "Easily add bookmarks to any category. Includes spotlight-like search with mouse\/keyboard support. Default key: cmd+b (win:ctrl+b)",
    "homepage_url": "https:\/\/github.com\/fffx\/quick-bookmark",
    "short_name": "Quick Bookmark",
    "permissions": [
        "bookmarks",
        "tabs"
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "author": "Fang Xing",
    "minimum_chrome_version": "49",
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "assets\/icons\/bookmark.png",
            "32": "assets\/icons\/bookmark.png",
            "48": "assets\/icons\/bookmark.png",
            "128": "assets\/icons\/bookmark.png"
        },
        "default_title": "Quick Bookmark",
        "chrome_style": false
    },
    "background": {
        "scripts": [
            "js\/background.bundle.js"
        ],
        "persistent": false
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+B",
                "windows": "Ctrl+B",
                "mac": "Command+B",
                "chromeos": "Ctrl+B",
                "linux": "Ctrl+B"
            }
        }
    }
}