PopClip extension that opens the selected URL in NetNewsWire as a feed.
Last active
February 15, 2023 16:42
-
-
Save pilotmoon/40b68c24ea496f3934937cf9dee3a709 to your computer and use it in GitHub Desktop.
PopClip Extension to add a URL to NetNewsWire
This file contains 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
// #popclip | |
// name: NetNewsWire | |
// icon: iconify:carbon:satellite-radar | |
// requirements: [url] | |
// lang: js | |
const url = popclip.input.data.urls[0]; | |
popclip.openUrl("feed:" + url, { | |
app: "com.ranchero.NetNewsWire-Evergreen" | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment