Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save yunusduman9298/81798b7ec08e562c895149126e630b1d to your computer and use it in GitHub Desktop.

Select an option

Save yunusduman9298/81798b7ec08e562c895149126e630b1d to your computer and use it in GitHub Desktop.
# Privacy Policy — Etsy Listing Clipper for Obsidian
Last updated: 2026-04-14
## The short version
This extension does not collect, transmit, sell, or share any user data. Everything happens locally in your browser. There are no servers, no accounts, no analytics, no tracking.
## What the extension does
When you click the extension icon (or press the keyboard shortcut) on an Etsy listing page, it:
1. Reads the content of the current Etsy listing page (title, images, price, description, variations, tags, reviews)
2. Builds a Markdown note from that content
3. Hands the note to your local Obsidian app via the `obsidian://` URI protocol
That's it.
## Data handled
| Data | Where it comes from | Where it goes |
|------|---------------------|---------------|
| Listing content (title, images, price, description, tags, reviews) | The Etsy page you are viewing | Your local Obsidian vault |
| Your settings (optional vault name, folder, filename pattern, toggles) | You, via the extension's Settings page | `chrome.storage.local` on your device |
Nothing is sent to any server operated by the developer or any third party.
## Permissions
- **activeTab** — Read the Etsy listing DOM only when you explicitly trigger the extension.
- **scripting** — Show an in-page confirmation toast when you use the keyboard shortcut. Injected code is bundled, never remote.
- **storage** — Save your own preferences on your device (`chrome.storage.local`).
- **host_permissions: https://www.etsy.com/*** — Restrict the content script to Etsy listings.
## What the extension does NOT do
- No analytics, tracking pixels, or telemetry
- No user accounts, login, or registration
- No cookies set or read
- No ads, affiliate links, or sponsored content
- No remote code execution — all code ships inside the extension
- No access to any website other than etsy.com/listing/*
## Third parties
None.
## Retention and deletion
Because nothing is collected on the developer's side, there is nothing to retain or delete there. Locally, your settings live in `chrome.storage.local` and are removed when you uninstall the extension. Markdown notes in your Obsidian vault are yours — the extension cannot read or delete them after they are saved.
## Changes to this policy
If this policy changes, the date at the top will be updated.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment