dont-track-me-google
Firefox and Chrome extensions to prevent Google from making links ugly.
ποΈ A CLI Tool to Automate Your Everyday Web Browser.
git clone https://github.com/sebastiancarlos/beachpatrol.gitsebastiancarlos/beachpatrolEssential software should be fully automatable. Web browsers aren't. Let's change that.
Beachpatrol is a CLI tool to replace and automate your everyday web browser.
Run beachpatrol to launch a Chromium or Firefox browser which can be
controlled externally through Playwright scripts.
You can use it as your daily driver; it works like a regular browser.
Use also beachpatrol --profile <profile-name> to launch a specific profile,
or beachpatrol --incognito.
To automate it, create a custom Playwright script in the beachpatrol/commands
folder. Then, run beachmsg <script-name> [<argument>...], and it will run it.
You can use the Playwright API to work on the currently focused tab, move to an
existing tab, open a new one, or use a headless tab instead.
If you don't want to go back and forth to the CLI to automate your browser, you can
install the beachpatrol-browser-extension. Its UI allows you to select a
command and call it with arguments. It will call beachmsg itself through the
browser extension's Native Messaging feature. Also, the UI will highlight commands
which are meant to run on the current URL, will provide GUI elements for common
situations (such as pagination and dropdowns), and will support hotkeys:
git clone https://github.com/sebastiancarlos/beachpatrolcd beachpatrolnpm install to install dependencies.make to install symlinks to the executables (in /usr/local/bin by
default, which should be in your PATH)
npm install -g . to install it globally.beachpatrol
beachpatrol &beachpatrol again and you should still be logged-in
to all your sites.beachpatrol --profile new-profile-name
beachmsg smoke-test to run the pre-installed test command, which
performs the classic Selenium smoke
test.Suppose you want to automate web search. You can create a commands/search.js
file (relative to the cloned repo directory) with the following content:
export default async ({ context, activePage }, ...searchTerms) => {
const page = await context.newPage();
await page.goto(
`https://www.google.com/search?q=${encodeURIComponent(searchTerms.join(" "))}`,
);
};
Every Beachpatrol command must export a default async function, which is the entry point of your command.
The function should take:
{ context, activePage } as its first argument, where:
context is the Playwright BrowserContextactivePage is the currently focused Page object, or nullThen, you simply automate the browser by interacting with the Playwright API.
The search.js command above opens a new tab (context.newPage()), performs
the task, and leaves it focused. Other possible commands might work on the
currently focused tab, or expect one or more particular tabs to be already
open. All of this depends on your use-case; you are free to implement commands
as you see fit.
To run your new command, execute the following from your terminal:
beachmsg search "your search terms here"
Tip: You can edit your command files and re-run them without needing to
restart the beachpatrol server! Your changes will be picked up automatically.
You can always look at the built-in
commands/smoke-test.js
command for inspiration.
First and foremost, beachpatrol contains a customized Playwright script to
launch your browser. It passes arguments which closely recreate the experience
of using a non-automated browser. For example, it does not set a fixed viewport
(which is, otherwise, a sensible default for Playwright's main use-case of
automated testing.)
Beachpatrol also installs and loads the packages patchright,
playwright-extra and puppeteer-extra-plugin-stealth. This is needed to hide
the fact that the browser is automated, which in turn is needed for basic
features such as Google Sign-in.
Naturally, the above packages are tangentially related to a cat-and-mouse game between web-scrapers and web-masters. As such, they might stop working at any time. Beachpatrol guarantees to find new automation-hiding techniques if that happens. Beachpatrol also encourages users to respect every website's terms and conditions.
patchright is currently one of the best tools for this task. However, it
doesn't support Firefox. We use puppeteer-extra-plugin-stealth for Firefox,
which might encounter some issues such as Cloudflare's false positives, and
extra Google captchas.
After the browser is launched, it listens on a UNIX socket, beachpatrol.sock,
for messages by beachmsg.
Usage: beachpatrol [--profile <profile_name>] [--incognito] [--headless]
- Launches a browser with the specified profile.
- Opens a socket to listen for commands. Commands can be sent with the
'beachmsg' command.
Options:
--profile <profile_name> Use the specified profile. Default: default
--browser <browser_name> Use the specified browser. Default: chromium
Supported browsers: chromium, firefox
--incognito Launch browser in incognito mode.
--headless Launch browser in headless mode.
--help Show this help message.
Usage: beachmsg <command> [args...]
- Sends a command to the beachpatrol server controlling the browser.
- The provided command must exist in the "commands" directory of beachpatrol.
Options:
--help Show this help message.
When we say that web browsers aren't automatable, we're thinking more along the lines of the depth of automation available with tools like Bash, Vim or Emacs (where virtually every interaction can be scripted and interwoven into custom workflows without much resistance.)
Yes, we acknowledge there are existing ways to automate browser tasks like autofill, mouse and keyboard macros, bookmarklets, extensions, and of course various tools like Playwright.
Beachpatrol aspires to bring a new spin to the state-of-the-art, re-imagining automation tools not as a one-time task, but integrated into your daily browser. Just as your favorite shell or extendable text editor.
In short, our aim is to take existing automation tools (currently designed for testing or scraping) and tweak them for everyday browsing, while also providing a UI which is both simple and power-user friendly.
True, but it offers several value-added features, including:
beachpatrol launches a browser and listens
on a socket. The separate client beachmsg can then be used to transmit
Playwright commands to the controlled browser. This separation allows for
greater flexibility and integration with other tools and scripts.Initial browser launch benchmarks suggested us to prioritize Playwright.
| Browser | Launch time |
|---|---|
| Playwright Chrome | 1.7s |
| Selenium Node Chrome | 1.8s |
| Selenium Java Chrome | 4s |
| Playwright Firefox | 4.3s |
| Selenium Java Firefox | 6s |
| Selenium Node Firefox | 9s |
While Python is a popular language for web automation, we decided for JavaScript to enable code sharing with the browser extension.
Similar functionality can indeed be achieved with Userscript managers, such as the Violentmonkey browser extension.
But, while Beachpatrol allows us to control the browser from both the OS and a browser extension, our priority is the OS. Also, there are limitations on how much you can interact with the OS from a browser extension. Therefore, something like Playwright was the natural choice.
Furthermore, while controlling the browser from an extension is possible, Manifest v3 removed the ability to execute third-party strings of code. Popular automation extensions like Greasemonkey and Tampermonkey could also be affected by Manifest v3. The alternative is to embed the code into the extension, but that would require re-bundling the extensions after every change. Other tricks do exist to make this approach work, and there is some hope for future Manifest v3 solutions, but this path is certainly tricky.
It is more likely that Selenium and related tools will continue to work in the foreseeable future given the business demand for traditional browser testing.
While direct protocol communication is possible, Playwright provides a well-regarded, higher-level API with built-in features like automatic waiting, RPC object references (JSHandle), and cross-browser support.
Direct protocol communication would require implementing these features manually over what is essentially a message-passing interface, significantly increasing complexity.
Bookmarklets are handy for executing scripts with a click, but they are limited to user-triggered actions and may not handle complex workflows, such as automation based on specific timing or interaction with operating system features.
Plus, there's a personal preference factor. For those who like to have finer control, keeping automation scripts within their file system feels cleaner and less bound to a particular browser ecosystem. However, we recognize that bookmarklets have their place and can be the preferred choice for many users.
You can use Chromium DevDool's Recorder
tab to record
actions and export them as Puppeteer scripts, which use the same API as
Playwright. Or, you can use the Playwright
codegen.
Also, given Playwright's popularity, you can describe your task in natural language to an AI and ask for it as a Playwright script. With some practice, this should get you halfway to a working script.
This project is in alpha.
beachpatrol-browser-extension is in early-testing and not publicly
released. It is expected to launch in a fully-functional state by the next
release.activePage will always be null when using Firefox.MIT
We welcome contributions of all kinds. If you have a suggestion or fix, please feel free to open an issue or pull request.
Formatting with prettier (default configuration) isn't enforced but
appreciated.
more like this
Firefox and Chrome extensions to prevent Google from making links ugly.
meine π - A CLI file manager and system utility built with Textual. It combines intuitive command parsing with rich tβ¦
A to-do list that runs your Claude Code agents β capture anywhere, dispatch in parallel, review from your phone.
search projects, people, and tags