Skip to content

Instantly share code, notes, and snippets.

This file has been truncated, but you can view the full file.
<!DOCTYPE html><html lang="en" class="has-dark-text ssplywaq idc0_343"><head>

I loved Arc so much when it came out. I had been using vertical tabs on Firefox for years, via the treestyle tabs extension. But Arc felt like a breath of fresh air in 2022. Native vertical tabs. Air Traffic Control to open specific links in specific profiles. Swish UI. Unfortunately it's yet another Chromium-based browser, and I hated to make Firefox lose another user to Google's web engine. But at the time, that was a sacrifice I was willing to make to experience a "better Internet" or whatever.

But I'm done with it. It's been death by a thousand cuts. I'm going to spend quite a long time explaining all my annoyances with Arc, and link to a few guides on switching back to Firefox.

Air Traffic Control was great initially. Links matching Jira/Github etc were configured to open automatically in my work profile. I kinda wished manually configured URLs like that would open in a little Arc window, but instead they'd bring me to the main window. No big deal I guess. But anything not manually configured would

@trumad
trumad / arcHistoryToFirefox.md
Last active May 20, 2024 06:22
Import Arc history in Firefox

No good reason why this had to be so tricky:

  • Install Export Chrome History extension in Arc
  • Export history to JSON. Choosing the forever option does actually export ALL the history in Arc
  • Install History Export for firefox
  • Optional: Export Firefox history, to see what the json looks like
  • Make the Arc history match what firefox expects. I used this javascript to convert it:
arcHistory.map(item =&gt; {
https://github.com/pineappleEA/pineapple-src/releases/download/EA-4176/Linux-Yuzu-EA-4176.AppImage
https://github.com/pineappleEA/pineapple-src/releases/download/EA-4175/Linux-Yuzu-EA-4175.AppImage
https://github.com/pineappleEA/pineapple-src/releases/download/EA-4174/Linux-Yuzu-EA-4174.AppImage
https://github.com/pineappleEA/pineapple-src/releases/download/EA-4173/Linux-Yuzu-EA-4173.AppImage
https://github.com/pineappleEA/pineapple-src/releases/download/EA-4172/Linux-Yuzu-EA-4172.AppImage
https://github.com/pineappleEA/pineapple-src/releases/download/EA-4171/Linux-Yuzu-EA-4171.AppImage
https://github.com/pineappleEA/pineapple-src/releases/download/EA-4170/Linux-Yuzu-EA-4170.AppImage
https://github.com/pineappleEA/pineapple-src/releases/download/EA-4169/Linux-Yuzu-EA-4169.AppImage
https://github.com/pineappleEA/pineapple-src/releases/download/EA-4168/Linux-Yuzu-EA-4168.AppImage
https://github.com/pineappleEA/pineapple-src/releases/download/EA-4167/Linux-Yuzu-EA-4167.AppImage
# Create a temporary directory if it doesn't exist
$tempDirectory = "C:\Temp"
if (-not (Test-Path $tempDirectory -PathType Container)) {
New-Item -ItemType Directory -Path $tempDirectory -Force
}
# Step 0: Backup Arc:
Write-Host "Backing up arc..."
& "C:\Program Files\7-Zip\7z.exe" a -t7z "c:\Temp\arcBackup.7z" "c:\arcBrowser\*" -mx=4
@trumad
trumad / googleLinks.boost.js
Created February 7, 2024 09:32
Arc Boost - Google Links
@trumad
trumad / deletePlaydateGames.js
Created June 16, 2023 13:08
Deletes all games at play.date/sideload
// ==UserScript==
// @name Delete all playdate games
// @namespace http://tampermonkey.net/
// @version 0.1
// @description deletes all playdate games at play.date/sideload
// @author trumad
// @match https://play.date/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=play.date
// @grant none
// ==/UserScript==
@trumad
trumad / autoblock promoted tweeters script (arc boost).js
Created June 13, 2023 19:24
This script autoblocks accounts which post any sponsored tweets, hopefully before you even see them. Use the autoscroll checkbox to let it scroll replies on a popular tweet, to hoover up accounts who sponsor.
// Boost by Thanael - thannymack.com
// Created as a boost for Arc browser
// Could easily be ported to a tampermonkey script
// This script autoblocks accounts which post any sponsored tweets, hopefully before you even see them
// Use the autoscroll checkbox to let it scroll replies on a popular tweet, to hoover up accounts who sponsor.
if (!localStorage.userWantsPromotersBlocked){
localStorage.userWantsPromotersBlocked = true;
}
@trumad
trumad / tiddlersMonkees.json
Created February 5, 2023 10:07
Scans a linux directory, subdirectories & files, and creates a tiddlywiki. Each folder & file becomes a hyperlinked tiddler. Makes it easy to browse and search a file system, and share the listings with others.
This file has been truncated, but you can view the full file.