Quick Bookmark
Easily add bookmarks to any category. Includes spotlight-like search with mouse/keyboard support. Default key: cmd+b (win:ctrl+b)
Apa itu Quick Bookmark?
Quick Bookmark adalah ekstensi Chrome yang dikembangkan oleh fangxing204, dan fitur utamanya adalah "Easily add bookmarks to any category. Includes spotlight-like search with mouse/keyboard support. Default key: cmd+b (win:ctrl+b)".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Quick Bookmark
Unduh file ekstensi Quick Bookmark dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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)
Informasi Dasar Ekstensi
Nama | Quick Bookmark |
ID | bbjekmkfbdemdbfkckbakmmiceppjkdc |
URL Resmi | https://chromewebstore.google.com/detail/quick-bookmark/bbjekmkfbdemdbfkckbakmmiceppjkdc |
Deskripsi | Easily add bookmarks to any category. Includes spotlight-like search with mouse/keyboard support. Default key: cmd+b (win:ctrl+b) |
Ukuran File | 78.07 KB |
Jumlah Instalasi | 26 |
Versi Saat Ini | 1.3.8 |
Terakhir Diperbarui | 2021-06-28 |
Tanggal Publikasi | 2020-12-26 |
Penilaian | 4.00/5 Total 2 Penilaian |
Pengembang | fangxing204 |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/fffx/quick-bookmark |
Bahasa yang Didukung | 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" } } } } |