{"id":23695965,"url":"https://github.com/ziprecruiter/chromedriver-proxy","last_synced_at":"2025-08-07T04:41:11.595Z","repository":{"id":27532186,"uuid":"113460987","full_name":"ZipRecruiter/chromedriver-proxy","owner":"ZipRecruiter","description":"ChromeDriver Proxy is an extensible proxy to ChromeDriver.","archived":false,"fork":false,"pushed_at":"2023-04-10T22:26:08.000Z","size":331,"stargazers_count":18,"open_issues_count":2,"forks_count":3,"subscribers_count":32,"default_branch":"master","last_synced_at":"2025-07-07T21:16:23.363Z","etag":null,"topics":["chrome","chromedriver","headless-chrome","selenium"],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ZipRecruiter.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2017-12-07T14:31:45.000Z","updated_at":"2024-08-09T22:57:17.000Z","dependencies_parsed_at":"2025-07-07T21:15:22.863Z","dependency_job_id":"27e6ff55-fde4-4c37-9888-ba79c0be92af","html_url":"https://github.com/ZipRecruiter/chromedriver-proxy","commit_stats":null,"previous_names":[],"tags_count":31,"template":false,"template_full_name":null,"purl":"pkg:github/ZipRecruiter/chromedriver-proxy","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ZipRecruiter%2Fchromedriver-proxy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ZipRecruiter%2Fchromedriver-proxy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ZipRecruiter%2Fchromedriver-proxy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ZipRecruiter%2Fchromedriver-proxy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ZipRecruiter","download_url":"https://codeload.github.com/ZipRecruiter/chromedriver-proxy/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ZipRecruiter%2Fchromedriver-proxy/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269201157,"owners_count":24377448,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-07T02:00:09.698Z","response_time":73,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["chrome","chromedriver","headless-chrome","selenium"],"created_at":"2024-12-30T05:58:23.222Z","updated_at":"2025-08-07T04:41:11.557Z","avatar_url":"https://github.com/ZipRecruiter.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![npm version](https://img.shields.io/npm/v/chromedriver-proxy.svg?style=flat-square)](https://www.npmjs.com/package/chromedriver-proxy)\n\nChromedriver-Proxy is an extensible proxy to ChromeDriver.\n\n# Features\n\n * Reuse browsers.  The browser will be cleaned between each selenium session.\n * Connect to Chromedriver from remote host without modifying the whitelist\n * Record video and upload the video to s3.  Compatible with chrome in headless mode.\n * Support mp4, webm, and m3u8 video format\n * Set extra headers\n * Evaluate script on each page load\n * Provide your own custom extensions.\n\n# Requirements\n\nnodejs \u003e= 8, ffmpeg, chrome \u003e= 64 and the current version of [chromedriver](https://sites.google.com/a/chromium.org/chromedriver/downloads).\n\n# Usage\n\n```\nDEBUG=chromedriver_proxy:* chromedriver-proxy --config config.json\n```\n\nexample configuration:\n```json\n{\n  \"tmpDir\": \"/tmp\",\n  \"proxy\": {\n    \"port\": 4444,\n    \"baseUrl\": \"/wd/hub\"\n  },\n  \"chromedriver\": {\n    \"chromedriverPath\": \"/usr/bin/chromedriver\",\n    \"port\": 4445,\n    \"autoRestart\": true // restart chromedriver if it crashes\n  },\n  \"chromePool\": {\n    \"enable\": true,\n    \"chromePath\": \"/usr/bin/google-chrome\",\n    \"reuse\": true, // reuse the browser instances\n    \"chromeStartupTimeOut\": 1000, // time to wait for chrome to startup\n    // chromeAgentModule should extend the builtin ChromeAgent.\n    \"chromeAgentModule\": \"path to custom module\",\n    \"clearStorage\": [\n    // https://chromedevtools.github.io/devtools-protocol/tot/Storage/#method-clearDataForOrigin\n      {\n        \"origin\": \".ziprecruiter.com\",\n        \"storageTypes\": \"cookies,localstorage\"\n      }\n    ],\n    \"chromeAgent\": {\n      \"screenRecorder\": {\n        \"videoFormat\": \"\u003cmp4 or webm\u003e\",\n\n        \"s3\": {\n          \"region\": \"\u003cmy region\u003e\"\n          // additional options to the constructor http://docs.aws.amazon.com/AWSJavaScriptSDK/latest/AWS/S3.html#constructor-property\n        },\n        \"s3Upload\": {\n          \"Bucket\": \"\u003cmy bucket\u003e\"\n          // additional options to the upload function http://docs.aws.amazon.com/AWSJavaScriptSDK/latest/AWS/S3.html#upload-property\n        }\n      }\n    }\n  }\n}\n```\n\n## Clients\n\nThe project provides a [python](clients/py) client and a [javascript](clients/js) client.  See the [examples](examples) for basic usage.\n\nFeel free to add support for any of the languages that the selenium project supports (java, python, javascript, c#, ruby).\n\n## Issues\n\nPlease report any issues using the [ChromeDriver Proxy issue tracker](https://github.com/ZipRecruiter/chromedriver-proxy/issues). When using\nthe issue tracker\n\n- __Do__ include a detailed description of the problem.\n- __Do__ include a link to a [gist](http://gist.github.com/) with any\n    interesting stack traces/logs (you may also attach these directly to the bug\n    report).\n- __Do__ include a reduced test case.\n- __Do not__ use the issue tracker to submit basic help requests.\n- __Do not__ post empty \"I see this too\" or \"Any updates?\" comments. These\n    provide no additional information and clutter the log.\n- __Do not__ report regressions on closed bugs as they are not actively\n    monitored for updates (especially bugs that are \u003e6 months old). Please open a\n    new issue and reference the original bug in your report.\n\n# License\n\nCopyright (c) 2017 ZipRecruiter\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fziprecruiter%2Fchromedriver-proxy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fziprecruiter%2Fchromedriver-proxy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fziprecruiter%2Fchromedriver-proxy/lists"}