ECPaste Documentation

Getting Started

ECPaste is a browser extension that helps you save, organize, and reuse code snippets and text templates anywhere on the web.

After installing the extension, you'll see the ECPaste icon in your browser toolbar. Click on it to access your snippets dashboard.

Extension Demo

Click the browser extension icon (simulated):

Saving Snippets

There are two ways to save snippets:

Method 1: Using the Right-Click Menu

  1. Select any text on a webpage
  2. Right-click on the selected text
  3. Choose "Save as Snippet" from the context menu
  4. In the popup, give your snippet a name and choose a category
  5. Click "Save"

Method 2: Using Keyboard Shortcut

  1. Select any text on a webpage
  2. Press Alt+S (or Option+S on Mac)
  3. In the popup, give your snippet a name and choose a category
  4. Click "Save"
Try It: Select Text to Save
function calculateTotal(items) { return items.reduce((sum, item) => { return sum + (item.price * item.quantity); }, 0); }
Select the code above, then click the button below to simulate saving it

Organizing Snippets

ECPaste helps you keep your snippets organized with categories and tags.

Categories

When saving a snippet, you can assign it to one of the following categories:

Tags

Add tags to your snippets for even more detailed organization. Tags make it easy to filter and find exactly what you need.

Using Snippets

There are two ways to use your saved snippets:

Method 1: Quick Insert with Trigger

  1. Click in any text field where you want to insert a snippet
  2. Type ### followed by your snippet name
  3. Press Tab or Space to replace the trigger with your snippet content
Try Quick Insert

Type "###hello" in the field below and press Tab:

Method 2: Using the Browser Extension

  1. Click the ECPaste icon in your browser toolbar
  2. Find the snippet you want to use
  3. Click the "Copy" button to copy it to your clipboard
  4. Paste it wherever you need it

Cloud Synchronization

ECPaste automatically syncs your snippets across all your devices using your browser account.

How Cloud Sync Works

  1. Install ECPaste on your browser on any device
  2. Make sure you're signed into your browser account (Chrome, Edge, etc.)
  3. Your snippets will automatically sync across all devices
Cloud Sync Demo

Laptop

Desktop

Tablet

Your snippets are always available on all your devices

Keyboard Shortcuts

Shortcut Cheat Sheet
Action Shortcut
Save snippet Alt+S
Open panel Alt+P
Quick insert ###name + Space