Quick Bookmark
Easily add bookmarks to any category. Includes spotlight-like search with mouse/keyboard support. Default key: cmd+b (win:ctrl+b)
What is Quick Bookmark?
Quick Bookmark is a Chrome extension developed by fangxing204, and its main feature is "Easily add bookmarks to any category. Includes spotlight-like search with mouse/keyboard support. Default key: cmd+b (win:ctrl+b)".
Extension Screenshots
Download Quick Bookmark Extension CRX File
Download Quick Bookmark extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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)
Extension Basic Information
Name | Quick Bookmark |
ID | bbjekmkfbdemdbfkckbakmmiceppjkdc |
Official URL | https://chromewebstore.google.com/detail/quick-bookmark/bbjekmkfbdemdbfkckbakmmiceppjkdc |
Description | Easily add bookmarks to any category. Includes spotlight-like search with mouse/keyboard support. Default key: cmd+b (win:ctrl+b) |
File Size | 78.07 KB |
Installation Count | 26 |
Current Version | 1.3.8 |
Last Updated | 2021-06-28 |
Publish Date | 2020-12-26 |
Rating | 4.00/5 Total 2 Ratings |
Developer | fangxing204 |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/fffx/quick-bookmark |
Supported Languages | 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" } } } } |