Email yourself a link to the current page in a single click.
Available as a Chrome extension. A mobile app (Flutter) is in development.
extension/ Chrome extension (Manifest v3)
functions/ Firebase Cloud Functions backend
mobile_flutter/ Flutter mobile app
mobile/ React Native mobile app (deprecated)
npm --prefix extension run buildLoad extension/src/ as an unpacked extension in Chrome, or use the built zip at extension/dist/memail-extension.zip.
npm --prefix functions install
npm --prefix functions run serve # local emulator
npm --prefix functions run deploy # deploy to Firebase- The extension or mobile app captures the current page/shared link
- Sends a POST request with
{title, url}and a Firebase auth token to the Cloud Function - The Cloud Function verifies the token, extracts the user's email, and sends the link via email
See PRIVACY_POLICY.md.