Skip to content

Instantly share code, notes, and snippets.

@AliG378
AliG378 / bookmark.js
Created August 21, 2018 22:43 — forked from melhesedek/bookmark.js
"url increment ☛" bookmarklet
javascript:a = document.URL.split(/(\d+)/g); for (i = a.length-1; i >= 0; --i) { if (a[i].match(/\d+/)) { a[i]++; break; } }; window.location.assign( a.join('') )