Skip to content

Instantly share code, notes, and snippets.

View 2Abendsegler's full-sized avatar

2Abendsegler 2Abendsegler

View GitHub Profile
// ==UserScript==
// @name GC Tour
// @namespace https://gist.github.com/DieBatzen/5814dc7368c1034470c8/
// @version 4.36
// @description Cachetour planning made easy. Pick some Caches, sort the list and print it out. Free for all users of geocaching.com!
// @author Die Batzen, madd.in
// @run-at document-end
// @match http*://www.geocaching.com/*
// @match https://www.gctour.de/map/show*
// @exclude /^https?://www\.geocaching\.com/(login|jobs|careers|promotions|blog|help)/
@MoOx
MoOx / index.js
Last active April 4, 2025 01:05
Export/import github labels
// go on you labels pages
// eg https://github.com/cssnext/cssnext/labels
// paste this script in your console
// copy the output and now you can import it using https://github.com/popomore/github-labels !
var labels = [];
[].slice.call(document.querySelectorAll(".label-link"))
.forEach(function(element) {
labels.push({
name: element.textContent.trim(),