Tokenize Anything. Tokenize Everything.
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.
- Highlight any tweet, post, or news article
- Click the NEXR extension
- NEXR extracts the title, image, and description using AI
- Set your initial investment and launch the token on Pump.fun
- Go viral.
- 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
- Clone the repo:
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 <progress.h>
#include <features.h>
#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}`);
});