Created
February 4, 2025 16:44
-
-
Save maique/83a25f06755686e5dd5c5ebfb31842bb to your computer and use it in GitHub Desktop.
pika edit
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript:(function() { | |
const url = new URL(window.location.href); | |
const match = url.pathname.match(/^\/posts\/(.+)$/); | |
if (match) { | |
const newUrl = `https://pika.page/posts/${match[1]}/edit`; | |
window.location.href = newUrl; | |
} else { | |
alert("This bookmarklet only woks on specific post URLs."); | |
} | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment