Custom Search Links
How to Configure
Section titled “How to Configure”You can configure Custom Search Links in the Pokke app by navigating to Settings > Custom Search Links (Direct Link). From there, you can create a new search link by specifying a name and a URL template.
Example: Integration with Perplexity
Section titled “Example: Integration with Perplexity”The most practical use case for this is passing a prompt with the bookmark’s context directly to an AI search engine like Perplexity. For example, you can configure a custom URL like this:
# Prompt (before URL encoding):# URL: {{url}}# title: {{title}}# description: {{description}}# Please explain the content of the specified URL in detail.# Also, please suggest some interesting pages on related topics.https://www.perplexity.ai/?q=URL%3A%20{{url}}%0Atitle%3A%20{{title}}%0Adescription%3A%20{{description}}%0APlease%20explain%20the%20content%20of%20the%20specified%20URL%20in%20detail.%0AAlso%2C%20please%20suggest%20some%20interesting%20pages%20on%20related%20topics.Variables you can use in the URL template:
{{url}}: The URL of the saved bookmark{{title}}: The title of the saved bookmark{{description}}: The description/summary of the saved bookmark
Requirements for a valid template:
- The URL template must use
httporhttps. - The template must include at least one placeholder.
- Only enabled links are shown next to bookmarks in the workspace bookmark list.
With just one click from a saved bookmark, this instantly hands over the article’s context to Perplexity, asking it to explain the content in detail and suggest related topics. It dramatically shortens the path from “saving for later” to actually “learning from it.”
Why URL Customization?
Section titled “Why URL Customization?”You might wonder why I didn’t just integrate an LLM API directly into Pokke to summarize articles automatically in the background.
The main advantage of using URL queries instead of backend APIs is cost efficiency through leveraging the user’s existing SaaS subscriptions. By simply passing the query to a service the user is already paying for (like a Perplexity Pro account), I can offer advanced AI capabilities without bearing the heavy LLM API costs on the service side. It is a win-win for both the developer and the user.
However, there is a clear trade-off. Because it relies on external URL routing rather than a backend agent, it cannot be fully automated. The AI won’t summarize the article the moment you save it; it still requires the user’s manual action (a click) to trigger the process.
Despite the slight friction of needing a manual click, this “Bring Your Own SaaS” approach fits perfectly for small-scale or personal projects. It is a lightweight feature that significantly enhances how I interact with the information I collect.