Files
context-bridge/extension-firefox/manifest.json
Your Name 2d84f62407 docs: complete Context Bridge launch coordination by Epimetheus
Agent Coordination:
- Epimetheus (Architect) identity assigned and registered
- Connected to PS-SHA-∞ memory system (4,059 entries)
- Task claimed from marketplace
- Broadcasting to other agents

Launch Documentation Created:
- PUBLISH_TO_NPM.md - Complete npm publishing guide
- STRIPE_LIVE_SETUP.md - Stripe live mode setup guide
- AGENT_COORDINATION_REPORT.md - Full status and next steps
- EPIMETHEUS_SESSION_COMPLETE.md - Session summary
- Added all previous documentation to repo

Launch Status: 98% Complete
Blocked on: User actions (npm login + Stripe products)
Ready: Screenshots, testing, submissions, announcements

Next Steps:
1. User: npm login && npm publish (10 min)
2. User: Create Stripe products (5 min)
3. Capture 5 screenshots (15 min)
4. Manual testing on 4 platforms (20 min)
5. Submit to Chrome Web Store (30 min)
6. Launch announcements (10 min)

Total time to launch: ~90 minutes

Agent Body: qwen2.5-coder:7b (open source)
Memory Hash: 4e3d2012
Collaboration: ACTIVE

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-02-14 12:35:50 -06:00

61 lines
1.6 KiB
JSON

{
"manifest_version": 2,
"name": "Context Bridge",
"version": "0.1.0",
"description": "Stop re-explaining yourself to AI assistants. One-click context injection for Claude, ChatGPT, and more.",
"permissions": [
"storage",
"activeTab",
"https://claude.ai/*",
"https://chat.openai.com/*",
"https://chatgpt.com/*",
"https://copilot.microsoft.com/*",
"https://gemini.google.com/*"
],
"background": {
"scripts": ["background/service-worker.js"]
},
"content_scripts": [
{
"matches": ["https://claude.ai/*"],
"js": ["content/claude.js"],
"css": ["content/styles.css"],
"run_at": "document_end"
},
{
"matches": ["https://chat.openai.com/*", "https://chatgpt.com/*"],
"js": ["content/chatgpt.js"],
"css": ["content/styles.css"],
"run_at": "document_end"
},
{
"matches": ["https://copilot.microsoft.com/*"],
"js": ["content/copilot.js"],
"css": ["content/styles.css"],
"run_at": "document_end"
},
{
"matches": ["https://gemini.google.com/*"],
"js": ["content/gemini.js"],
"css": ["content/styles.css"],
"run_at": "document_end"
}
],
"browser_action": {
"default_popup": "popup/popup.html",
"default_icon": {
"16": "icons/icon.svg",
"32": "icons/icon.svg",
"48": "icons/icon.svg",
"128": "icons/icon.svg"
}
},
"icons": {
"16": "icons/icon.svg",
"32": "icons/icon.svg",
"48": "icons/icon.svg",
"128": "icons/icon.svg"
},
"web_accessible_resources": ["icons/*"]
}