Skip to content

Instantly share code, notes, and snippets.

View olejorgenb's full-sized avatar

Ole Jørgen Brønner olejorgenb

View GitHub Profile
@olejorgenb
olejorgenb / compare-with-git-version.sh
Last active February 20, 2024 19:34
Compares the published firefox port of Tab Modifier with the github source code
#!/bin/bash
# set -x
# The URLs for the extension and the Git repo
EXTENSION_URL="https://addons.mozilla.org/firefox/downloads/file/4099496/tab_modifier-0.21.0.xpi"
GIT_REPO_URL="https://github.com/furybee/chrome-tab-modifier.git"
# The names of the extension and Git repo directories
EXTENSION_DIR="tab_modifier_extension"
@olejorgenb
olejorgenb / places-exploration.sql
Last active April 7, 2024 00:35
Firefox places.sqlite exploration (browser history)
--- Firefox places.sqlite exploration
-- https://developer.mozilla.org/en-US/docs/Mozilla/Tech/Places/Database
-- https://wiki.mozilla.org/images/d/d5/Places.sqlite.schema3.pdf
-- http://forensicswiki.org/wiki/Mozilla_Firefox_3_History_File_Format (probably somewhat outdated)
-- [select text -> right click -> search] does not set from_visit :(
-- Gotchas :angry-face: https://superuser.com/a/1405880/153095 (Explains why your history is incomplete)
@olejorgenb
olejorgenb / highlight-hn-author.js
Last active April 7, 2024 14:32
Highlight HN author
// bookmarklet_title: Highlight HN author
// https://chat.openai.com/c/496f4ddc-0151-40aa-af92-36897587d7ea
// Because I'm lazy
// Function to change the mouse cursor to something distinctive
function setDistinctiveCursor() {
document.body.style.cursor = 'crosshair';
}