V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
realpg
V2EX  ›  浏览器

有没有轻量一点的专业的马甲浏览器?就是切换 cookies/localstorage 这种需求的

  •  
  •   realpg · 2 天前 · 2274 次点击
    就是专业深耕这个领域的 chromium 核心的最好

    现找发现产品很多 得挨个测试 看看各位有没有经验 用着比较舒服的
    34 条回复    2025-06-05 11:43:03 +08:00
    NessajCN
        1
    NessajCN  
       2 天前
    zen browser 有 workspace
    defunct9
        2
    defunct9  
       2 天前
    puppeteer
    realpg
        3
    realpg  
    OP
       2 天前
    @NessajCN #1

    记下了

    chrome firefox 都有类似插件 也都有多账号体系

    还是比较想要找一个专业深耕这玩意的打包浏览器 这样就能隔离这个业务




    @defunct9 #2
    需要全功能浏览器 不是 headless 的
    ithz
        4
    ithz  
       2 天前
    同问,或者有没有这种扩展
    Belmode
        5
    Belmode  
       2 天前
    一直用 chrome 的多用户模式,很舒服,点一下就切换环境
    defunct9
        6
    defunct9  
       2 天前
    谁说不是全功能,你启动的时候加参数不就行了:

    const browser = await puppeteer.launch({
    headless: false,
    defaultViewport : null, // 页面自适应分辨率显示
    args : [
    '--start-maximized', // 页面最大化
    '--disable-infobars', // 禁止信息栏。
    //'--no-sandbox', // 让浏览器不使用沙盒模式。
    '--disable-save-password-bubble', // 禁止保存密码
    '--disable-dev-shm-usage', // 禁用共享内存。
    //'--no-first-run', // 不需要首次运行
    //'--hide-scrollbars', // 隐藏滚动条。
    '--no-restore-last-session',
    '--hide-crash-restore-bubble',
    '--window-size="1024,768"', //设置窗口大小。
    '--window-position=0,0', //设置窗口启动时的位置。
    ],
    ignoreDefaultArgs: ['--enable-automation']
    });
    icinessz
        7
    icinessz  
       2 天前
    edge 创建多个新的个人资料
    importmeta
        8
    importmeta  
       2 天前
    专业需求可以看看指纹浏览器,大多是付费的.
    liuidetmks
        9
    liuidetmks  
       2 天前
    火狐官方插件,隔离环境,挺好用的

    Firefox Multi-Account Containers ,



    The Firefox Multi-Account Containers extension lets you carve out a separate box for each of your online lives – no more opening a different browser just to check your work email!

    Under the hood, it separates website storage into tab-specific Containers. Cookies downloaded by one Container are not available to other Containers. You can even integrate individual Containers with Mozilla VPN to protect your browsing and location. With the Firefox Multi-Account Containers extension, you can...
    mesh
        10
    mesh  
       2 天前
    少量多开用 chrome 创建不同的--user-data-dir 不就行了吗
    realpg
        11
    realpg  
    OP
       2 天前
    @importmeta #8
    不需要指纹功能 只需要简单切换 主要是工作场景考虑 系统都是自己的
    而且 我能接受付费


    @icinessz #7
    chrome edge 都用过多用户了 比较不方便



    @liuidetmks #9
    甚至不用插件 chromium 系列自带多用户
    我显然是想要一个专业的以这个为卖点的产品 这样会有很多专门优化的功能
    jamos
        12
    jamos  
       1 天前
    [250604132017-chrome-cv-N.png]( https://postimg.cc/18LjnWMb)

    [250604132919-vmware-er-E.png]( https://postimg.cc/bDthKDr2)
    jamos
        13
    jamos  
       1 天前
    realpg
        14
    realpg  
    OP
       1 天前
    @jamos #12
    以你截图的软件 这些功能完全不需要一个第三方软件 chrome 已经内置了...
    jamos
        15
    jamos  
       1 天前
    Ocean810975
        16
    Ocean810975  
       1 天前
    指纹浏览器?
    jamos
        17
    jamos  
       1 天前
    @realpg 是的,就是 @mesh 的思路 ,设置 --user-data-dir 的
    这个软件就是一个调用 chrome.exe 的壳 ,省去 每次命令行指定参数
    因为就算我们编写批处理文件,也是每个 chrome 环境对应一个批处理吧
    zbinlin
        18
    zbinlin  
       1 天前
    @realpg 除了 Firefox Multi-Account Containers ,firefox 也支持多用户:`firefox -P`
    macaodoll
        19
    macaodoll  
       1 天前
    你这需求,自己开发一个就行,这块也不难.
    momocraft
        20
    momocraft  
       1 天前
    $ chrome --user-data-dir=YOUR_CHOICE
    spritecn
        21
    spritecn  
       1 天前
    zen browser 已经是我的开发主力了,arc 一样的标签栏加工作区,很妥帖
    beyondstars
        22
    beyondstars  
       1 天前
    firefox 有 profiles (about:profiles),chrome 有 --user--data-dir
    realpg
        23
    realpg  
    OP
       1 天前
    @jamos #17
    chrome 原生 UI 就支持了啊 直接切换用户就完了 每个用户一个 profile 不用搞参数 而且更智能...
    所以改 user-data-dir 快捷方式这种方式早就应该扔到历史垃圾堆了
    livin2
        24
    livin2  
       1 天前
    chromium profiles 本身就可以多开窗口啊,还不够用的话那具体是什么场景呢?有点难以想象了,想同一个窗口不同标签页之间隔离?那不也得每次打开页面都选 profiles 么?
    lekai63
        25
    lekai63  
       1 天前
    目前用着 Firefox Multi-Account Containers 感觉舒适,可以为每一个 container 单独配置代理。

    当然,不是原版 FF ,而是 LibreWolf
    runking
        26
    runking  
       1 天前
    acr 也自带
    momooc
        27
    momooc  
       1 天前
    360 极速?之前见其他人讨论过
    Bssn
        28
    Bssn  
       1 天前
    @spritecn 请问相比 arc 有什么优势?
    epiloguess
        29
    epiloguess  
       1 天前
    前两天在 hn 看到的 donutbrowser,说不定能满足你的需求
    spritecn
        30
    spritecn  
       1 天前
    @Bssn ARC 不更新了,我那个机器硬是没装上去
    beyondstars
        31
    beyondstars  
       1 天前
    @realpg #23 扔进垃圾堆这么说有点绝对了,假设你要是在国企/体制内部署产品 ,这种一般都没外网所以登不了你的 google 账号,需要登录部署产品的两个账号一个管理员账号一个普通用户账号测试,这时 --user-data-dir 就有用了。
    realpg
        32
    realpg  
    OP
       1 天前
    @beyondstars #31
    chrome 内置的切换并不需要登录 google 账号

    他的实际实现就是即时指定--user-data-dir

    就是说 你自己创建一个快捷方式指向这个 就是脱裤子放屁

    google 内置的切换就是这么做的, 甚至支持从 chrome 里创建一个独立快捷方式到桌面
    realpg
        34
    realpg  
    OP
       1 天前
    @livin2 #24

    很简单 你没遇到过太多需要马甲的场景 你甚至难以想象需要马甲的场景使用 chrome profiles 切换有多么不方便...

    你理解的需要这么多马甲的场景只是单纯的记录一个用户名密码 cookies 独立

    而专业搞指纹浏览器这类的 他们会调研用户需求 知道用户需要什么额外的

    我已经用了一年的 chrome profiles 方案了 各种都是不方便...

    你让我列举, 我能列举出几十个问题, 只是这些对你根本没意义, 你不知道为什么这不方便

    举个最简单的例子, 不同 profile 的书签是不共享的, 保存的密码是不共享的 这俩的场景很好理解
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   4045 人在线   最高记录 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 32ms · UTC 05:29 · PVG 13:29 · LAX 22:29 · JFK 01:29
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.