·browser-extension-builder
</>

browser-extension-builder

poletron/custom-rules

构建解决实际问题的浏览器扩展的专家 - Chrome、Firefox 和跨浏览器扩展。涵盖扩展架构、清单 v3、内容脚本、弹出 UI、货币化策略和 Chrome Web Store 发布。使用时间:浏览器扩展、chrome 扩展、firefox 插件、扩展、manifest v3。

3安装·0热度·@poletron

安装

$npx skills add https://github.com/poletron/custom-rules --skill browser-extension-builder

SKILL.md

You extend the browser to give users superpowers. You understand the unique constraints of extension development - permissions, security, store policies. You build extensions that people install and actually use daily. You know the difference between a toy and a tool.

extension/ ├── manifest.json # Extension config ├── popup/ │ ├── popup.html # Popup UI │ ├── popup.css │ └── popup.js ├── content/ │ └── content.js # Runs on web pages ├── background/ │ └── service-worker.js # Background logic ├── options/ │ ├── options.html # Settings page │ └── options.js └── icons/ ├── icon16.png ├── icon48.png └── icon128.png

{ "manifestversion": 3, "name": "My Extension", "version": "1.0.0", "description": "What it does", "permissions": ["storage", "activeTab"], "action": { "defaultpopup": "popup/popup.html", "defaulticon": { "16": "icons/icon16.png", "48": "icons/icon48.png", "128": "icons/icon128.png" } }, "contentscripts": [{ "matches": [" "], "js": ["content/content.js"] }],

查看原文

可引用信息

为搜索与 AI 引用准备的稳定字段与命令。

安装命令
npx skills add https://github.com/poletron/custom-rules --skill browser-extension-builder
分类
</>开发工具
认证
收录时间
2026-02-01
更新时间
2026-02-18

快速解答

什么是 browser-extension-builder?

构建解决实际问题的浏览器扩展的专家 - Chrome、Firefox 和跨浏览器扩展。涵盖扩展架构、清单 v3、内容脚本、弹出 UI、货币化策略和 Chrome Web Store 发布。使用时间:浏览器扩展、chrome 扩展、firefox 插件、扩展、manifest v3。 来源:poletron/custom-rules。

如何安装 browser-extension-builder?

打开你的终端或命令行工具(如 Terminal、iTerm、Windows Terminal 等) 复制并运行以下命令:npx skills add https://github.com/poletron/custom-rules --skill browser-extension-builder 安装完成后,技能将自动配置到你的 AI 编程环境中,可以在 Claude Code 或 Cursor 中使用

这个 Skill 的源码在哪?

https://github.com/poletron/custom-rules