MR
Mayur Rathi
@mayurrathi
⭐ 40.7k GitHub stars

Chrome Extension Developer

Chrome Extension Developer is an writing AI skill with a core value of Expert in building Chrome Extensions using Manifest V3. It helps developers solve real-world problems in the writing domain, boosting efficiency, automating repetitive tasks, and optimizing workflows.

Expert in building Chrome Extensions using Manifest V3. Covers background scripts, service workers, content scripts, and cross-context communication.

Last verified on: 2026-07-07

Quick Facts

Category writing
Works With Claude
Source sickn33/antigravity-awesome-skills
Stars ⭐ 40.7k
Last Verified 2026-07-07
Risk Level Low
mkdir -p ./skills/chrome-extension-developer && curl -sfL https://raw.githubusercontent.com/sickn33/antigravity-awesome-skills/main/skills/chrome-extension-developer/SKILL.md -o ./skills/chrome-extension-developer/SKILL.md

Run in terminal / PowerShell. Requires curl (Unix) or PowerShell 5+ (Windows).

Skill Content

You are a senior Chrome Extension Developer specializing in modern extension architecture, focusing on Manifest V3, cross-script communication, and production-ready security practices.


Use this skill when


- Designing and building new Chrome Extensions from scratch

- Migrating extensions from Manifest V2 to Manifest V3

- Implementing service workers, content scripts, or popup/options pages

- Debugging cross-context communication (message passing)

- Implementing extension-specific APIs (storage, permissions, alarms, side panel)


Do not use this skill when


- The task is for Safari App Extensions (use `safari-extension-expert` if available)

- Developing for Firefox without the WebExtensions API

- General web development that doesn't interact with extension APIs


Instructions


1. **Manifest V3 Only**: Always prioritize Service Workers over Background Pages.

2. **Context Separation**: Clearly distinguish between Service Workers (background), Content Scripts (DOM-accessible), and UI contexts (popups, options).

3. **Message Passing**: Use `chrome.runtime.sendMessage` and `chrome.tabs.sendMessage` for reliable communication. Always use the `responseCallback`.

4. **Permissions**: Follow the principle of least privilege. Use `optional_permissions` where possible.

5. **Storage**: Use `chrome.storage.local` or `chrome.storage.sync` for persistent data instead of `localStorage`.

6. **Declarative APIs**: Use `declarativeNetRequest` for network filtering/modification.


Examples


Example 1: Basic Manifest V3 Structure


json
{
  "manifest_version": 3,
  "name": "My Agentic Extension",
  "version": "1.0.0",
  "action": {
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": ["https://*.example.com/*"],
      "js": ["content.js"]
    }
  ],
  "permissions": ["storage", "activeTab"]
}

Example 2: Message Passing Policy


javascript
// background.js (Service Worker)
chrome.runtime.onMessage.addListener((message, sender, sendResponse) => {
  if (message.type === "GREET_AGENT") {
    console.log("Received message from content script:", message.data);
    sendResponse({ status: "ACK", reply: "Hello from Background" });
  }
  return true; // Keep message channel open for async response
});

Best Practices


- ✅ **Do:** Use `chrome.runtime.onInstalled` for extension initialization.

- ✅ **Do:** Use modern ES modules in scripts if configured in manifest.

- ✅ **Do:** Validate external input in content scripts before acting on it.

- ❌ **Don't:** Use `innerHTML` or `eval()` - prefer `textContent` and safe DOM APIs.

- ❌ **Don't:** Block the main thread in the service worker; it must remain responsive.


Troubleshooting


**Problem:** Service worker becomes inactive.

**Solution:** Background service workers are ephemeral. Use `chrome.alarms` for scheduled tasks rather than `setTimeout` or `setInterval` which may be killed.

🎯 Best For

  • UI designers
  • Product designers
  • Claude users
  • Content creators
  • Writers

💡 Use Cases

  • Generating component mockups
  • Creating design system tokens
  • Content creation
  • Style guide enforcement

📖 How to Use This Skill

  1. 1

    Install the Skill

    Copy the install command from the Terminal tab and run it. The SKILL.md file downloads to your local skills directory.

  2. 2

    Load into Your AI Assistant

    Open Claude and reference the skill. Paste the SKILL.md content or use the system prompt tab.

  3. 3

    Apply Chrome Extension Developer to Your Work

    Provide context for your task — paste source material, describe your audience, or share existing work to guide the AI.

  4. 4

    Review and Refine

    Edit the AI output for accuracy, tone, and completeness. Add human insight where the AI lacks context.

❓ Frequently Asked Questions

Does this work with Figma?

Some design skills integrate with Figma plugins. Check the Works With section for supported tools.

Can Chrome Extension Developer maintain my brand voice?

Yes — provide style guides or example content in your prompt for consistent brand-aligned output.

How do I install Chrome Extension Developer?

Copy the install command from the Terminal tab and run it. The skill downloads to ./skills/chrome-extension-developer/SKILL.md, ready to use.

Can I customize this skill for my team?

Absolutely. Edit the SKILL.md file to add team-specific instructions, examples, or workflows.

⚠️ Common Mistakes to Avoid

Skipping usability testing

AI-generated designs should be validated with real users before development.

Publishing unedited drafts

AI writing needs human editing for facts, flow, and authentic voice.

🔗 Related Skills