mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2026-04-25 17:16:00 +03:00
[GH-ISSUE #1695] Feature Request: Chrome ARGS cannot be edited by config files at present #1013
Labels
No labels
expected: maybe someday
expected: next release
expected: release after next
expected: unlikely unless contributed
good first ticket
help wanted
pull-request
scope: all users
scope: windows users
size: easy
size: hard
size: medium
size: medium
status: backlog
status: blocked
status: done
status: idea-phase
status: needs followup
status: wip
status: wontfix
touches: API/CLI/Spec
touches: configuration
touches: data/schema/architecture
touches: dependencies/packaging
touches: docs
touches: js
touches: views/replayers/html/css
why: correctness
why: functionality
why: performance
why: security
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/ArchiveBox#1013
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @jyeric on GitHub (Sep 12, 2025).
Original GitHub issue: https://github.com/ArchiveBox/ArchiveBox/issues/1695
Originally assigned to: @pirate on GitHub.
What type of suggestion are you making?
Modification of existing behavior
What is the problem that your feature request solves?
When I am archiving some pages, I notice that some screenshots show blank pages. And the "--virtual-time-budget=15000" can resolve the issue.
However, in this commit
github.com/ArchiveBox/ArchiveBox@ac53fdf677, this arg has been removed. (I think this is removed in v0.8. I haven't found where has been removed in v0.7)I tried to add it back by using the config file. But the default config file does not contain CHROME_ARGS that can be modified just like WGET_ARGS and so on. I think sometimes people need to add some args to chrome.
What is your proposed solution?
Adding CHROME_DEFAULT_ARGS or CHROME_EXTRA_ARGS to https://github.com/ArchiveBox/ArchiveBox/blob/main/archivebox/config.py
What hacks or alternative solutions have you tried to solve the problem?
Hacks to the file https://github.com/ArchiveBox/ArchiveBox/blob/dev/archivebox/pkgs/abx-plugin-chrome/abx_plugin_chrome/config.py (for new version v0.8)
Hacks to the file https://github.com/ArchiveBox/ArchiveBox/blob/v0.7.3/archivebox/util.py (for old version v0.7)
Share the entire output of the
archivebox versioncommand for the current verison you are using.How badly do you want this new feature?
Mini Survey
@pirate commented on GitHub (Sep 16, 2025):
That argument doesn't work with the other args we use, you have to use playwright or puppeteer for custom delays at the moment.
@pirate commented on GitHub (Dec 29, 2025):
this is fixed on
dev, we dont usevirtual-time-budgetby default but you should be able to add it toCHROME_ARGS_EXTRA='["--virtual-time-budget=12345"]'to use it now