Org-Dex is a lightweight Chrome extension that allows users to quickly copy all open tab titles and URLs in Org-mode syntax for easy note-taking and session management.
- Fetches all open tabs in the current Chrome window.
- Formats the tab links using Org-mode syntax.
- Allows users to add a session name and optional description.
- Automatically copies the formatted session to the clipboard.
- Clone or download this repository.
- Open Chrome and go to
chrome://extensions/
. - Enable Developer Mode (toggle in the top right corner).
- Click on “Load unpacked” and select the extension folder.
- The extension is now installed and ready to use.
- Click on the Org-Dex extension icon.
- Enter a session name and an optional description.
- Click the “Fetch Tabs” button.
- The session details, including tab titles and URLs, will be copied to your clipboard in Org-mode format.
- Paste the copied content into your Org document.
Session Name [2025-03-28 Fri 14:30] Optional session description *** [[https://example.com][Example Website]] *** [[https://another-site.com][Another Site]]
- Uses
chrome.tabs.query()
to fetch all open tabs. - Formats tab data as Org-mode links.
- Uses
navigator.clipboard.writeText()
to copy the text. - Closes the popup automatically after copying.