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)」です。
拡張機能のスクリーンショット
Quick Bookmark拡張機能のCRXファイルをダウンロード
Quick Bookmark拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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) 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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"
}
}
}
} | |