Skip to content

Instantly share code, notes, and snippets.

@rofe
rofe / tampermonkey-helix-changes-7d.js
Last active September 12, 2020 08:14
Tampermonkey script to show Helix changes from the last 7 days
d=new Intl.DateTimeFormat("de", { year: 'numeric', month: '2-digit', day: "2-digit" }).format(new Date(Date.now()-691200000)).split('.').reverse().join('-');window.open(`https://github.com/issues?q=is%3Aissue+label%3Aenhancement+org%3Aadobe+helix+OR+theblog+closed%3A>${d}`);
// ==UserScript==
// @name Helix changes
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Find all Helix enhancements in GitHub in the last 7 days
// @author rofe
// @match <your_url>
// @grant none
// ==/UserScript==