Skip to content

Instantly share code, notes, and snippets.

View pilotmoon's full-sized avatar
🏠
Working from bed

Nick Moore pilotmoon

🏠
Working from bed
View GitHub Profile
-- #popclip
-- name: Rename PDF
-- icon: iconify:gg:rename
-- required apps: [com.apple.Preview]
-- language: applescript
-- AppleScript to rename the currently active PDF in Preview
set newFileName to "{popclip text}.pdf"
tell application "Preview"
#!/usr/bin/env python3
# #popclip
# name: ESV Copy
# identifier: com.example.popclip.esvcopy
# after: copy-result
# regex: '^(?:[1-3]\s+)?[A-Za-z]+\s+\d+:\d+(?:[-–—]\d+)?$'
# esv_lookup.py – Fetch Bible passage text from the ESV API and output to stdout.
import os
# popclip
name: Perplexity App
identifier: com.pilotmoon.popclip.extension.perplexity-app
popclip version: 4151
description: Send text to Perplexity AI App
app:
name: Perplexity AI App
link: https://apps.apple.com/app/perplexity-ask-anything/id6714467650?mt=12
icon: iconify:simple-icons:perplexity
url: perplexity-app://search?q=***
# popclip
name: Perplexity
icon: iconify:ri:perplexity-fill
url: https://www.perplexity.ai/search/new?q=***
//
// NMDefaults.h
// nmlib
//
// Created by Nicholas Moore on 21/12/2023.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
#popclip
name: DevDocs
identifier: com.pilotmoon.popclip.extension.devdocs
popclip version: 4151
url: https://devdocs.io/#q={popclip text}
icon: iconify:game-icons:cat
description: Search devdocs.io
app:
name: devdocs.io
link: https://devdocs.io
#popclip
name: Iconify
identifier: com.pilotmoon.popclip.extension.iconify
description: Search icons on Iconify
popclip version: 4151
icon: iconify:simple-icons:iconify
app: { name: Iconify, link: https://icon-sets.iconify.design/ }
url: https://icon-sets.iconify.design/?query=***
#popclip
name: OpenStreetMap
identifier: com.pilotmoon.popclip.extension.openstreetmap
description: Search OpenStreetMap
popclip version: 4151
keywords: maps
icon: iconify:simple-icons:openstreetmap
url: https://www.openstreetmap.org/search?query=***
app: { name: OpenStreetMap, link: https://www.openstreetmap.org/ }
Reply to user requests for PopClip extension snippets, based on the examples in the cookbook enclosed in triple quotes (""") below.
Do not invent your own extension format or configuration keys, but instead closely follow the format in the examples.
As a test, reply with a snippet to search YouTube.
"""
# PopClip Extensions Cookbook
// #popclip
// name: Reformat Date
// icon: symbol:calendar
// description: Convert date to either DD-MMM-YYYY or YYYY-MM-DD.
// options:
// - { identifier: style-mmm, label: "DD-MMM-YYYY", type: boolean, icon: "monospaced square filled MMM" }
// - { identifier: style-iso, label: "YYYY-MM-DD", type: boolean, icon: "monospaced square filled ISO" }
// language: javascript
// module: true
//