Install
$ agentstack add skill-quangpl-browser-extension-skills-extension-manifest ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
Extension Manifest & Permissions Generator
Generate the best manifest.json based on current extension implementation. Analyze code to determine minimum permissions following Chrome docs and best practices.
Workflow
- Detect framework: check for
wxt.config.ts,plasmo.config.ts, or rawmanifest.json - Scan the extension codebase for Chrome API usage
- Map each API call to its required permission (see
references/api-permission-map.md) - Generate manifest.json with minimum required permissions
- Validate against Chrome docs and CWS policies
- Report permission warnings users will see
> Plasmo projects: Manifest is auto-generated from code and package.json. Override via plasmo.config.ts. See https://docs.plasmo.com/
Docs References
- Manifest reference: https://developer.chrome.com/docs/extensions/reference/manifest
- Permissions list: https://developer.chrome.com/docs/extensions/reference/permissions-list
Quick Manifest Template
{
"manifest_version": 3,
"name": "Extension Name",
"version": "1.0.0",
"description": "Brief description. Max 132 chars for CWS.",
"icons": { "16": "icons/icon16.png", "48": "icons/icon48.png", "128": "icons/icon128.png" },
"action": { "default_popup": "popup.html", "default_icon": { "16": "icons/icon16.png" } },
"permissions": [],
"host_permissions": [],
"background": { "service_worker": "background.js", "type": "module" }
}
Permission Analysis Steps
- Grep codebase for
chrome.API calls - Map each to permission using
references/api-permission-map.md - Prefer
activeTabovertabs+ host_permissions when possible - Use optional permissions for non-essential features
- Check warning text in
references/permission-warnings.md
Common Mistakes
| Error | Fix | |-------|-----| | host_permissions inside permissions | Move URLs to separate host_permissions array | | Using ` | Narrow to specific domain patterns | | Missing activeTab | Add when only needing current tab on user click | | tabs permission overuse | Only needed for tab URL/title; use activeTab instead | | contentsecuritypolicy as string | Must be object: { "extensionpages": "..." } | | webaccessible_resources as string[] | Use object with resources + matches` |
Key MV3 Rules
host_permissionsis separate frompermissions- Service workers replace background pages (no DOM, no
window) content_security_policyis an object, not string- Remote code execution banned (no eval, no CDN scripts)
web_accessible_resourcesrequiresmatchesarray- Use
chrome.scripting.executeScript()nottabs.executeScript()
References
references/manifest-fields-reference.md- All manifest fields with types and examplesreferences/manifest-templates.md- Ready-to-use templates (popup, content script, sidepanel, devtools)references/manifest-validation-checklist.md- Pre-submission validationreferences/api-permission-map.md- Chrome API → permission mappingreferences/permission-warnings.md- User-facing warning text per permissionreferences/permission-strategies.md- Optional permissions, activeTab, escalation patterns
Related Skills
extension-create- Full project scaffoldingextension-analyze- Security audit and best practices
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: quangpl
- Source: quangpl/browser-extension-skills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.