Skip to content

Instantly share code, notes, and snippets.

@pilotmoon
Last active February 15, 2023 16:42
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save pilotmoon/40b68c24ea496f3934937cf9dee3a709 to your computer and use it in GitHub Desktop.
PopClip Extension to add a URL to NetNewsWire

NetNewsWire

PopClip extension that opens the selected URL in NetNewsWire as a feed.

// #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