원클릭으로
a0-browser-ext
Create, inspect, install, and safely maintain Chrome extensions for BioDockify AI's built-in Browser plugin.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Create, inspect, install, and safely maintain Chrome extensions for BioDockify AI's built-in Browser plugin.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
AI-driven multi-format SVG content generation system. Converts source documents (PDF/DOCX/URL/Markdown) into high-quality SVG pages and exports to PPTX through multi-role collaboration. Use when user asks to "create PPT", "make presentation", "生成PPT", "做PPT", "制作演示文稿", or mentions "ppt-master".
Recommends the best journals for an academic paper. Use this skill whenever an author wants to know where to submit their paper, asks for journal suggestions, wants to find suitable journals for their research, or asks "which journal should I submit to". Takes the paper abstract or full manuscript, gathers the author's preferences via interactive buttons, evaluates the quality and scope of the work, then produces an exhaustive ranked list of suitable journals drawn exclusively from the Scopus and WoS indexed journal database bundled with this skill. Enriches each recommendation with live metrics (IF, CiteScore, SJR, quartile) fetched from Scimago, JCR, and publisher pages. Delivers a formatted PDF report. Always trigger this skill — do not attempt journal recommendations without it.
A shared code repository for the PAN (Digital Text Forensics) research community. Includes tools for authorship attribution, profiling, and style analysis.
A shared code repository for the PAN (Digital Text Forensics) research community. Includes tools for authorship attribution, profiling, and style analysis.
Use when the user asks Agent Zero to operate the built-in Linux Desktop, XFCE apps, LibreOffice GUI apps, file manager, terminal, or visual desktop workflows.
Improves research paper quality via academic rewriting, summarization, and proofreading.
| name | a0-browser-ext |
| description | Create, inspect, install, and safely maintain Chrome extensions for BioDockify AI's built-in Browser plugin. |
| tags | ["BioDockify-AI","browser","chrome-extension","playwright","manifest-v3"] |
Use this skill when the user wants to create a new Browser extension, modify an existing extension, or install a Chrome Web Store extension for BioDockify AI's direct _browser plugin.
/a0/usr/browser-extensions/<extension-slug>/./a0/usr/browser-extensions/... paths over host-only paths.Browser extensions run inside the Docker browser sandbox, but malicious or buggy extensions can still damage that sandboxed environment, corrupt browser profiles, exfiltrate page data visible to the Browser, or make browsing unreliable.
Before creating or installing an extension:
<all_urls> unless the user explicitly needs broad page access.reader-highlighter./a0/usr/browser-extensions/<slug>/manifest.json.manifest_version is 3.Minimal Manifest V3 starter:
{
"manifest_version": 3,
"name": "BioDockify AI Example Extension",
"version": "0.1.0",
"description": "Small, auditable Browser extension created with BioDockify AI.",
"permissions": [],
"host_permissions": [],
"action": {
"default_title": "A0 Extension"
}
}
Content script starter:
{
"manifest_version": 3,
"name": "BioDockify AI Page Helper",
"version": "0.1.0",
"description": "Adds a small page helper for specific sites.",
"permissions": [],
"host_permissions": ["https://example.com/*"],
"content_scripts": [
{
"matches": ["https://example.com/*"],
"js": ["content.js"],
"run_at": "document_idle"
}
]
}
If the user gives a Chrome Web Store URL or extension id:
/a0/usr/browser-extensions/chrome-web-store/<extension-id>/.manifest.json and summarize name, version, permissions, host permissions, and suspicious capabilities.Common URL shapes:
https://chromewebstore.google.com/detail/name/<extension-id>
https://chrome.google.com/webstore/detail/name/<extension-id>
<extension-id>
manifest.json parses cleanly./a0/usr/browser-extensions/ and removing the path from Browser settings.