Notre avis
Ce skill guide la création d'extensions Chrome modernes avec Manifest V3, couvrant les service workers, les scripts de contenu et la communication inter-contextes.
Points forts
- Se concentre sur Manifest V3 et les service workers, la norme actuelle.
- Explique clairement la séparation des contextes (background, contenu, UI).
- Fournit des exemples concrets de manifeste et de passage de messages.
- Insiste sur la sécurité et les permissions minimales.
Limites
- Ne couvre pas les extensions Safari ou Firefox hors WebExtensions.
- Ne remplace pas une validation spécifique à l'environnement cible.
- Ne traite pas en profondeur les API avancées comme chrome.alarms ou declarativeNetRequest.
Utilisez ce skill pour concevoir, construire ou migrer une extension Chrome en MV3, ou pour déboguer des problèmes de messaging entre scripts.
Évitez ce skill pour du développement web général sans API d'extension, ou pour des extensions Safari spécifiques.
Analyse de sécurité
SûrThe skill provides instructional guidance for developing Chrome extensions using Manifest V3. It does not declare or require any execution tools, and its examples are limited to standard extension APIs and safe coding practices. No destructive, exfiltrating, or obfuscated actions are present.
Aucun point d'attention détecté
Exemples
Build a new Chrome Extension using Manifest V3 with a background service worker, a content script for example.com, and a popup. Include the manifest.json and message passing between content and service worker.Migrate my existing Chrome extension from Manifest V2 to Manifest V3, converting the background page to a service worker and updating permissions and APIs as needed.Create a Chrome extension using the side panel API with a service worker that listens for messages from the side panel and uses chrome.storage for persistent data.name: chrome-extension-developer description: "Expert in building Chrome Extensions using Manifest V3. Covers background scripts, service workers, content scripts, and cross-context communication." risk: safe source: community date_added: "2026-02-27"
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-expertif available) - Developing for Firefox without the WebExtensions API
- General web development that doesn't interact with extension APIs
Instructions
- Manifest V3 Only: Always prioritize Service Workers over Background Pages.
- Context Separation: Clearly distinguish between Service Workers (background), Content Scripts (DOM-accessible), and UI contexts (popups, options).
- Message Passing: Use
chrome.runtime.sendMessageandchrome.tabs.sendMessagefor reliable communication. Always use theresponseCallback. - Permissions: Follow the principle of least privilege. Use
optional_permissionswhere possible. - Storage: Use
chrome.storage.localorchrome.storage.syncfor persistent data instead oflocalStorage. - Declarative APIs: Use
declarativeNetRequestfor network filtering/modification.
Examples
Example 1: Basic Manifest V3 Structure
{
"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
// 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.onInstalledfor 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
innerHTMLoreval()- prefertextContentand safe DOM APIs. <!-- security-allowlist: defensive extension guidance --> - ❌ 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.
Limitations
- Use this skill only when the task clearly matches the scope described above.
- Do not treat the output as a substitute for environment-specific validation, testing, or expert review.
- Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.
Expert Next.js App Router
Developpement
Un skill qui transforme Claude en expert Next.js App Router.
Générateur de README
Developpement
Crée des README.md professionnels et complets pour vos projets.
Rédacteur de Documentation API
Developpement
Génère de la documentation API complète au format OpenAPI/Swagger.