降温信号未识别到付费功能中风险权限组合
Session Buddy - Tab & Bookmark Manager icon

Session Buddy - Tab & Bookmark Manager

Save and restore sessions, manage tabs and bookmarks, and stay organized with a powerful and trusted privacy-first session manager.

用户数900K当前公开安装规模
评分4.7商店平均评分
评论数25,103公开评论体量
Manifest 版本V3插件平台版本
7日增长-100K近 7 天净增用户
7日增长率-10%相对周增长速度
视觉预览

Session Buddy - Tab & Bookmark Manager 媒体预览

2 项素材
趋势

用户增长趋势

按已采集快照查看用户数变化。

用户增长趋势

890K920K950K980K1M2026年7月16日2026年7月19日2026年7月22日最新值: 900K
评分趋势

近 7 日评分趋势

展示最近 7 日窗口内已采集的评分快照,辅助判断近期评分是否稳定。

7 日评分变化

起始值
4.66
最新值
4.66
7 日评分变化
0.00
4.564.614.664.714.762026年7月16日2026年7月19日2026年7月22日最新值: 4.66
2026年7月16日2026年7月22日
增长概览

日/周/月增长表现

同口径展示 1 天、7 天、30 天的绝对增长与增长率。

1日增长持平
00%
7日增长减少
-100K-10%
30日增长减少
-100K-10%
技术摘要

版本、语言与抓取信息

查看发布时间、版本、支持语言、最近更新和抓取时间。

版本4.1.1
ManifestV3
大小844KiB
语言数1English
发布时间
最近更新
最近抓取
English
简介

插件简介

查看插件说明、主要功能和适用场景。

Session Buddy is a tab and bookmark manager that allows you to:

● Save open tabs as collections that can be easily restored later. Great for freeing up memory and avoiding clutter.

● Recover your open tabs after a crash.

● See and manage all open tabs in one place.

● Search collections to quickly find what you're looking for.

...and lots more!

评价

最新评论快照

查看最近评论和评分分布。

商店综合星级4.7Chrome 商店给出的聚合评分,包含只有打分但没有同步评论正文的情况
已同步评论均分4.4仅基于下方已同步评论正文计算
有内容评论10,409已同步的评论正文数量
总评分/评论数25,103Chrome 商店公开评分/评论计数

商店综合星级:4.7。下方星级分布只统计已同步评论正文;如果某个插件只有公开分数、没有真实评论正文,这里可能为空。

5
7754
4
1059
3
400
2
261
1
935
987 lin2024年3月25日
1

怎麼更新後就不會自動記錄分頁了??? 直接廢掉80%武功了

版本 4.0.2语言 zh
12 有用 · 0 无用
Bribin Zheng2024年3月25日
5

Awesome! A very useful daily tool!

版本 4.0.4语言 en
10 有用 · 0 无用
Joel Azaria2024年3月24日
1

ZERO stars if I could. Wth did you do to what WAS a perfectly great extension? Who tf asked for these changes??? It now takes MANY MINUTES to restore my tabs where previously it was done in SECONDS. I HAVE the RAM I need to reopen 100+ tabs at once. Why should I now have to wait many minutes (more than 5 MINUTES) to reopen a session. How f*****g useless is that? Rebooting my computer before was fine, now it's a damned CHORE AND PAIN IN MY ***. Congratulations, you fixed what wasn't broken that no one asked for and *clearly* no one wants. MILLIONS of installs are not just disappointed but apparently all hate your guts now. Myself included. Was perfectly happy with this extension, even would have donated a few more bucks for it *the way it **was*** but now I'm on the hunt for a replacement. Great job sticking your foot in your eye. I can only wish the same misery on you you've inflicted on so many of your (once) loyal users. Now you can fade into obscurity as your ratings get re-rated into oblivion. Your extension now cannot die fast enough to make me happy. Good luck in your next life. This one is now over.

版本 4.0.2语言 en
18 有用 · 0 无用
A G2024年3月24日
1

Reviewed in v4: Cannot downgrade. Lost several features. Crash recovery is inconsistent. Tabs take much longer to reopen. Export in different formats doesn't appear to work, nor exporting parts of data. No tab suspender support (but I hear a fix is coming). Downgrading causes an auto update. Simply unusable for now. For such a major change, I would have hoped for a test phase, or an opt-in, instead of forcing it on everyone. Edit: Found a way to permanently downgrade as a temporary solution. (Do this at your own risk) 1. Export data from session buddy 2. Download the CRX file for the 3.6.9 extension from https://www.crx4chrome.com/history/1080/, then rename the packed file to .zip and extract to a folder 3. Remove the extension (if on Windows, ensure you enable viewing file extensions in explorer) 4. Enable developer mode in chrome://extensions and install the extracted folder using unpack extension - prevents any auto updating 5. Convert the export data from session buddy with the python script below - make sure to replace 'YOUR_FILE_HERE' with the file name of your exported data file -- EDIT: It seems you can also convert your data at the following site without the need to use Python: https://adrianverde.github.io/SessionBuddyBackupRetrocompatibilizer/ 6. Import the new converted file into session buddy 7. To update back in the future, export your current file, reinstall the version you desire, then reimport import os import json import datetime target_file = "YOUR_FILE_HERE.json" output_file = target_file.replace(".json", "_downgrade.json") with open(target_file, "r", encoding="utf-8") as f: content = json.loads(f.read()) session_remappings = { "sourceType": "type", "folders": "windows", "touched": "generated", "updated": "modified", "title": "name" } timestamp_keys = ["created", "generated", "modified"] window_remappings = { "links": "tabs" } for session in content["collections"]: session["sourceType"] = "saved" for session in content["history"]: session["sourceType"] = "previous" content["sessions"] = content.pop("collections") content["sessions"] += content.pop("history") for session in content["sessions"]: for old,new in session_remappings.items(): try: session[new] = session.pop(old) except: continue for key in timestamp_keys: try: timestamp = int(session[key]) dt = datetime.datetime.utcfromtimestamp(timestamp/1000) dt = datetime.datetime.strftime(dt, "%Y-%m-%dT%H:%M:%S.%f")[:-3] + "Z" session[key] = dt except: continue for window in session["windows"]: for old,new in window_remappings.items(): try: window[new] = window.pop(old) except: continue with open(output_file, "w", encoding="utf-8") as f: f.write(json.dumps(content, indent=4))

版本 4.0.2语言 en
16 有用 · 0 无用
non unum2024年3月24日
1

It's an absolute disaster, all my sessions collected over 2 years disappeared so BIG THANKS, import sessions = error, export as well. Useless. I've been using this extension at least for a decade till now. This kind or version of "Session Buddy" or whatever it is, shouldn't take a place in production without a proper testing. Just making more people upset. One star just because I have to before posting. One more thing, the rating is 4.7 but what's the average of the version 4?

版本 4.0.2语言 en
15 有用 · 0 无用
Artem2024年3月24日
1

Well done, you have ruined the extension. Don't fix what isn't broken.

版本 4.0.2语言 en
16 有用 · 0 无用
Christopher Coughlin2024年3月24日
1

Feature regression. Can no longer backup to HTML, dev says "copy / paste" is meant to fill this lost functionality.

版本 4.0.2语言 en
13 有用 · 0 无用
Nelson López2024年3月24日
1

Si una cosa funciona bien, para qué cambiarla?. Ahora he perdido todo mi hidtorial por causa que una actuqalización no pedida. Lo voy a desinstalar

版本 4.0.2语言 es
10 有用 · 0 无用
xut kuy2024年3月24日
2

Unlike v4.0.1, v4.0.2 allows the snapshot feature to be turned off. I think this is great. Thanks to this, we can avoid having to just watch old histories die one by one. However, what was added at the same time was the ability to delete snapshots in bulk, and there is still no ability to delete individual tiles in the history. This feature existed until v3. I can't wait to be able to delete individual tiles. My biggest concern right now is that we are losing the "ability to automatically save when the browser is closed or crashes" which was present until version 3. I have been using session buddy since around 2017, and one day I noticed that session buddy was saving my data, including secret tabs, in the "previous session" when the browser was about to crash. I liked this feature very much and it was the main reason I continued to use session buddy. Today, for the first time since version 4, my browser crashed, and when I restarted it, the previous session was not saved in HISTORY. If the ability to remember the last state when the browser is accidentally closed or crashes has been lost, then what is the purpose of HISTORY for me now that I have turned off snapshots? I used to be very happy that "manually saved sessions" were lined up under SAVED SESSIONS and "automatically saved sessions when browser is closed or crashes" were lined up under PREVIOUS SESSIONS, and both were useful. I would like to see that feature re-equipped in v4.0.3 or later as soon as possible. Or was that a feature that was miraculously equipped by session buddy unintentionally by the developers and can no longer be restored?

版本 4.0.2语言 en
9 有用 · 0 无用
Liara K. Han2024年3月24日
1

I can only search names of collections since yesterday. Not being able to search for link titles makes my years of sessions stored and this app itself nearly useless. Please fix this issue ASAP.

版本 4.0.2语言 en
12 有用 · 1 无用