Skip to content

Instantly share code, notes, and snippets.

@Alsweider
Alsweider / findDuplicatesInOnetab.js
Last active May 20, 2025 20:04 — forked from dpschen/findDuplicatesInOnetab.js
Find duplicates links in OneTab - including optimisation by insectman
(function findDuplicatesInOnetab() {
const isOneTab = document
.querySelector("title")
?.innerHTML.includes("OneTab"); // cheap OneTab check
if (!isOneTab) {
alert("Run this script in a OneTab tab");
return;
}
const getOneTabLinks = () => [