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 allows you to organize snippets by categories:

To manage your snippets and categories:

  1. Click the ECPaste icon in your browser toolbar
  2. Use the dashboard to view, edit, delete, or categorize your snippets
  3. Use the search bar to quickly find specific snippets
Category Selector

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

Sync Across Devices

ECPaste automatically syncs your snippets across all your devices where you've installed the extension and signed in with the same browser account.

Sync Visualization

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 + Tab