Stable signalUnknownMedium-risk permissions
Card Bookmarks icon

Card Bookmarks

Presenting a bookmark in a new way

Users3KCurrent public install base
Rating4.6Store average score
Reviews113Public review volume
Manifest versionV3Extension platform version
7-day growth0Net users gained this week
7-day growth rate0%Relative weekly velocity
Preview

Card Bookmarks Media preview

3 assets
Trend

User growth trend

Review user movement across collected snapshots.

User Growth Over Time

3K3K3K3K3K2026年7月18日2026年7月19日2026年7月19日Latest: 3K
Rating trend

7-day rating trend

View collected rating snapshots from the latest 7-day window to assess rating stability.

7-day rating change

Start
4.61
Latest
4.61
7-day rating change
0.00
4.514.564.614.664.712026年7月18日2026年7月19日2026年7月19日Latest: 4.61
2026年7月18日2026年7月19日
Growth overview

Daily, weekly, and monthly growth

Compare 1-day, 7-day, and 30-day net growth and growth rate.

1-day growthNo data
----
7-day growthFlat
00%
30-day growthNo data
----
Technical snapshot

Version, languages, and crawl freshness

Review publication date, version, supported languages, and crawl timestamps.

Version1.7.8
ManifestV3
Size1011KiB
Languages2English / 中文(中国)
Published
Store updated
Last crawled
English中文(中国)
Overview

Product summary

Review the store description, core capabilities, and common use cases.

Card bookmark is a browser bookmark tool. The original bookmark bar will occupy the space of the webpage, while the card bookmark is displayed in a pop-up way, which disappears when it is used up. At the same time, it provides more space to display frequently used bookmarks. In order to make it easier to use, search and set-top functions have been added in succession. Now the latest version is to add cloud services to facilitate data synchronization.

This major update:

1. Add a switch icon to the right of the title (bookmark data classification) in the upper left corner;

2. Further optimize the loading speed of bookmarks when opening;

3. Optimize the search experience, faster;

Some usage tips:

Reviews

Recent review snapshot

Inspect the latest comments and rating distribution.

Store average score4.6Chrome Web Store aggregate rating, including ratings without synced review text
Synced text average4.6Average computed only from synced review bodies below
Reviews with text98Synced review bodies
Total ratings / reviews113Chrome Web Store public rating/review count

Store average score: 4.6. The bars below are calculated from synced review text only, so they may be empty for extensions that have public ratings but no synced comments yet.

5
70
4
19
3
8
2
1
1
0
RaCyan2019年6月28日
5

云端书签保存位置与本地的不同步,还得自己整理。是否能够做成与本地同步的? 比如我保存书签是放到A目录,云端自动也放到A目录? 现在是放到了顶级目录,感觉不太方便。

Language zh
1 helpful · 0 not helpful
c c2019年6月27日
4

如果有个快捷键就好了'才发现有,看使用说明

Language zh
Anonymous user2019年6月7日
5

如果竖着可以可以多放几个收藏夹就好了,再27寸的显示器上使用。希望可以至少10个至少!懒的用滚轮

Language zh
capi chen2019年5月18日
5

刚使用了一下,非常喜欢,简洁明了。但是按住书签为什么不能拖动,随意改变顺序?急死我了

Language zh
0 helpful · 1 not helpful
Lu ZhiJun2019年5月12日
5

插件不错,但有个小问题,老是弹出通知来说我经常点击这个网址,让我收藏什么的,点击通知又没有什么东西,所以能不能加个开关,可以关闭这类通知?挺烦人的

Language zh
0 helpful · 1 not helpful
阿刁2019年5月9日
4

嗯..就觉得还行吧,在众多各有短板的同步插件中这个短板比较长一点而已,一直都是直接点击地址栏星星然后删除当前页面的书签的,删除的时候插件不会同步删除,还要手动搜索这个页面再删除;对单个书签的交互也做的不太好,一般点右键直接在鼠标那弹菜单了,这个要移动一大段距离再删除(感觉现在的设计是根据移动端的操作逻辑);当我想整理云端书签的时候没办法批量整理,或者当想打开连续的多个页面时,只能打开一个后再从头找到原来的位置。 补充: 很感谢开发者这么认真回复。毕竟开发是要当用户是傻子的(´・ω・`) 好的我理解了,请问是在哪里放着有教程吗,很多选项确实是不知道有何作用。但是右键..我真的没看出来是可以批量选中的,因为显示器成像素质比较差连虚线也没看出来😂条件反射觉得应该点出菜单,因为想直接在这个插件里对书签进行修改删除等操作。那个"聚焦新标签"我以为是点击bar上的图标自动聚焦到上一个添加的书签,然后没效果我还以为是个bug..建议能不能在每个选项名后加个小小的问号图标,点它能跳出"关闭和开启分别有什么效果"的解释的那种。 辛苦了(´・ω・`)

Language zh
1 helpful · 1 not helpful
阿福2019年4月15日
5

网友对书签排序的要求多样化,建议排序功能加一些选项,如:“书签夹在前,书签在后”、“书签在前,书签夹在后”、“是否递归排序”等。这里提供一个对所有书签按“书签夹在前,书签在后,再按拼音首字母a-z顺序”进行排序的算法,供参考,希望这个扩展越来越好。 function sort_local_bookmark() { chrome.bookmarks.getTree(function(bookmark) { // 书签排序(书签夹在前,书签在后,再按拼音首字母a-z顺序排序) const bookmarkSort = (bookmarkData, parentId) => { // 书签夹 const childrenArr = bookmarkData.filter((item) => { return item.children }) // 书签 const bookmarkArr = bookmarkData.filter((item) => { return !item.children }) // 根据汉字拼音首字母 a~z 排序目录 childrenArr.sort((a, b) => { console.log(a.title, b.title) return a.title.localeCompare(b.title, 'zh') }) // 根据汉字拼音首字母 a~z 排序书签 bookmarkArr.sort((a, b) => { return a.title.localeCompare(b.title, 'zh') }) // 重新组装书签数据 bookmarkData = [...childrenArr, ...bookmarkArr] // 书签的index属性修正(排序依据) bookmarkData.forEach((item, index) => { item.index = index }) // 移动书签(真正排序) bookmarkData.forEach((item, index) => { chrome.bookmarks.move(item.id, { parentId, index }) }) // 递归对子书签夹进行排序 bookmarkData.forEach((item) => { if (item.children) { bookmarkSort(item.children, item.id) } }) } bookmark[0].children.forEach((item) => { bookmarkSort(item.children, item.id) // 注:无法修改根文件夹(指包含“书签栏”、“其它书签”的文件夹) }) toast.show(language('sort_local_bookmark_success')) get_data('local', false) }) }

Language zh
jaakko2019年4月13日
5

终于找到了心目中理想的书签,为了你卸载了有点庞大和花里胡哨的《书签侧边栏》即使它真的很强大!但是痛点是不能像你这款一样随时随地的简单稳定的呼出我的书签,我们不正是需要这种可靠稳定的插件吗? 不知道在Mac上能不能设置快捷键是option➕b呼出书签呢 希望可以出一个类似自定义书签行列的功能,希望继续保持简洁稳定的特性!谢谢你开发者!

Language zh
fei y2019年4月11日
5

搜索到的收藏希望能显示出路径,谢谢

Language zh
Xiaokang Sun2019年4月4日
5

寻找了很久很久,一直想找一个好用的书签管理工具,今天终于“差不多”找到了,接近我心中完美的书签管理工具的样子了,希望开发者加油!

Language zh