gitextract_bqyizoye/ ├── .Rbuildignore ├── .github/ │ ├── .gitignore │ └── workflows/ │ └── R-CMD-check.yaml ├── .gitignore ├── .vscode/ │ ├── extensions.json │ └── settings.json ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R/ │ ├── browser.R │ ├── callbacks.R │ ├── chrome.R │ ├── chromote-package.R │ ├── chromote.R │ ├── chromote_session.R │ ├── event_manager.R │ ├── import-standalone-obj-type.R │ ├── import-standalone-types-check.R │ ├── manage.R │ ├── promises.R │ ├── protocol.R │ ├── screenshot.R │ ├── synchronize.R │ ├── utils.R │ └── zzz.R ├── README.Rmd ├── README.md ├── chromote.Rproj ├── cran-comments.md ├── man/ │ ├── Browser.Rd │ ├── Chrome.Rd │ ├── ChromeRemote.Rd │ ├── Chromote.Rd │ ├── ChromoteSession.Rd │ ├── chrome_versions.Rd │ ├── chrome_versions_list.Rd │ ├── chromote-options.Rd │ ├── chromote-package.Rd │ ├── chromote_info.Rd │ ├── default_chrome_args.Rd │ ├── default_chromote_object.Rd │ ├── find_chrome.Rd │ ├── fragments/ │ │ ├── basic-usage.Rmd │ │ ├── features.Rmd │ │ └── install.Rmd │ ├── reexports.Rd │ └── with_chrome_version.Rd ├── pkgdown/ │ ├── _brand.yml │ ├── _pkgdown.yml │ ├── extra.scss │ └── favicon/ │ └── site.webmanifest ├── revdep/ │ ├── .gitignore │ ├── README.md │ ├── cran.md │ ├── failures.md │ └── problems.md ├── tests/ │ ├── testthat/ │ │ ├── _snaps/ │ │ │ ├── chromote_session.md │ │ │ ├── linux64/ │ │ │ │ └── manage.md │ │ │ ├── mac-arm64/ │ │ │ │ └── manage.md │ │ │ └── win64/ │ │ │ └── manage.md │ │ ├── helper.R │ │ ├── setup.R │ │ ├── test-chrome.R │ │ ├── test-chromote_session.R │ │ ├── test-default_chromote_args.R │ │ ├── test-manage.R │ │ └── test-utils.R │ └── testthat.R └── vignettes/ ├── .gitignore ├── chromote.Rmd ├── commands-and-events.Rmd ├── example-attach-existing.Rmd ├── example-authentication.Rmd ├── example-cran-tests.Rmd ├── example-custom-headers.Rmd ├── example-custom-user-agent.Rmd ├── example-extract-text.Rmd ├── example-loading-page.Rmd ├── example-remote-hosts.Rmd ├── example-screenshot.Rmd ├── sync-async.Rmd └── which-chrome.Rmd