- Created manifest.json for the Crawl4AI Assistant extension. - Added popup HTML, CSS, and JS files for the extension interface. - Included icons and favicon for the extension. - Implemented functionality for schema capture and code generation. - Updated index.md to reflect the availability of the new extension. - Enhanced LLM Context Builder layout and styles for consistency. - Adjusted global styles for better branding and responsiveness.
44 lines
996 B
JSON
44 lines
996 B
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "Crawl4AI Assistant",
|
|
"version": "1.0.1",
|
|
"description": "Visual schema and script builder for Crawl4AI - Build extraction schemas by clicking on elements",
|
|
"permissions": [
|
|
"activeTab",
|
|
"storage",
|
|
"downloads"
|
|
],
|
|
"host_permissions": [
|
|
"<all_urls>"
|
|
],
|
|
"action": {
|
|
"default_popup": "popup/popup.html",
|
|
"default_icon": {
|
|
"16": "icons/icon-16.png",
|
|
"48": "icons/icon-48.png",
|
|
"128": "icons/icon-128.png"
|
|
}
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["<all_urls>"],
|
|
"js": ["content/content.js"],
|
|
"css": ["content/overlay.css"],
|
|
"run_at": "document_idle"
|
|
}
|
|
],
|
|
"background": {
|
|
"service_worker": "background/service-worker.js"
|
|
},
|
|
"icons": {
|
|
"16": "icons/icon-16.png",
|
|
"48": "icons/icon-48.png",
|
|
"128": "icons/icon-128.png"
|
|
},
|
|
"web_accessible_resources": [
|
|
{
|
|
"resources": ["icons/*", "assets/*"],
|
|
"matches": ["<all_urls>"]
|
|
}
|
|
]
|
|
} |