https://github.com/nexrfundev/nexr
A Chrome extension to create memecoins from tweets and articles, powered by Solana.
https://github.com/nexrfundev/nexr
crypto cryptocurrency extension-chrome memecoin pumpdotfun
Last synced: 14 days ago
JSON representation
A Chrome extension to create memecoins from tweets and articles, powered by Solana.
- Host: GitHub
- URL: https://github.com/nexrfundev/nexr
- Owner: nexrfundev
- License: other
- Created: 2025-05-14T14:19:44.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-05-20T15:50:35.000Z (about 1 year ago)
- Last Synced: 2025-06-15T23:40:47.902Z (12 months ago)
- Topics: crypto, cryptocurrency, extension-chrome, memecoin, pumpdotfun
- Language: JavaScript
- Homepage: http://nexr.fun/
- Size: 69.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Roadmap: roadmap-05-01-2025.md
Awesome Lists containing this project
README
# NEXR

**Tokenize Anything. Tokenize Everything.**
# NEXR
**Tokenize Anything. Tokenize Everything.**
NEXR is a Chrome extension that lets you launch memecoins from **tweets**, **articles**, and **any content online** with a single click. Built on **Solana** and deployed instantly via **Pump.fun**, NEXR removes all friction from memecoin creation.
---
## How It Works

1. **Highlight any tweet, post, or news article**
2. **Click the NEXR extension**
3. NEXR extracts the **title**, **image**, and **description** using AI
4. Set your **initial investment** and **launch** the token on Pump.fun
5. Go viral.
---
## Features
- **One-Click Tokenization** – Turn content into tokens instantly
- **AI Metadata** – Auto-generated titles, images, and descriptions
- **Built-in Wallet** – Manage your Solana wallet directly in the extension
- **Custom Image Upload** – Use your own art or pull directly from source
- **Developer Preview Mode** – Test launches with custom prompts
- **Leaderboard & History** – Track performance of your launches
- **Cross-Platform** – Works on Twitter, X, Reddit, Medium, and more
## Architecture
---
## Installation
1. Clone the repo:
```bash
git clone [https://github.com/nexrfundev/nexr.git]
2. Install dependencies:
cd nexr
npm install
3. Build the extension:
npm run build
4. Load in Chrome:
- Go to chrome://extensions/
- Enable Developer Mode
- Click Load Unpacked
- Select the /dist folder
Project Structure
nexr/
├── public/
├── src/
├── scripts/
├── assets/
├── tests/
├── sidebar.html
├── manifest.json
├── package.json
├── tailwind.config.js
├── tsconfig.json
└── ...
]]
/* NEXR Roadmap */
#include
#include
#define VERSION 0.5.1
class RoadmapFeature {
constructor(name, status, description) {
this.name = name;
this.status = status; // COMPLETED or PENDING
this.description = description;
}
}
function initRoadmap() {
return new Promise(async (resolve) => {
// Core Features ✓
await implement("PIN_EXTENSION"); // Sidebar for rapid token launches
await implement("TOKEN_LEADERBOARD"); // Track launches in real time
await implement("ISOLATED_TOKENIZATION"); // Select specific page sections
await implement("CUSTOM_AI_PROMPTS"); // Personalized token generation
await implement("CUSTOM_TOKEN_IMAGES"); // Upload custom images
// Developer & Education ✓
await implement("LEADERBOARD_API"); // Programmatic data access
await implement("EXPLAINER_VIDEO"); // Tutorial content
await implement("AUTO_WALLET_PROVISIONING"); // Easy onboarding
await implement("COIN_CREATE_CONTEST"); // Community engagement
await implement("METRICS_DASHBOARD"); // Usage analytics
// In Progress □
if (await getFunds("treasury")) {
implement("NEW_FEE_STRUCTURE"); // 3.3% to treasury
console.log("Fee structure: 60% complete");
}
try {
implement("WALLET_UPGRADES"); // Send, swap, and manage assets
console.log("Wallet upgrades: 20% complete");
} catch (e) {
console.log("Development in progress...");
}
// Summary
console.log("Total completed features: 10/12");
resolve("Roadmap initialized with v" + VERSION);
});
}
/*----------------------------------------------------------*\
| |
| // COMPLETED: |
| ✓ PIN_EXTENSION |
| ✓ TOKEN_LEADERBOARD |
| ✓ ISOLATED_TOKENIZATION |
| ✓ CUSTOM_AI_PROMPTS |
| ✓ LEADERBOARD_API |
| ✓ CUSTOM_TOKEN_IMAGES |
| ✓ AUTO_WALLET_PROVISIONING |
| |
| // PENDING: |
| □ NEW_FEE_STRUCTURE |
| □ WALLET_UPGRADES |
| |
\*----------------------------------------------------------*/
// Start deployment
initRoadmap().then(status => {
console.log(`NEXR roadmap deployment: ${status}`);
});