mirror of
https://gitee.com/dify_ai/dify.git
synced 2024-11-30 02:08:37 +08:00
288705fefd
Co-authored-by: luowei <glpat-EjySCyNjWiLqAED-YmwM> Co-authored-by: crazywoola <427733928@qq.com>
29 lines
653 B
JSON
29 lines
653 B
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "Dify Chatbot",
|
|
"version": "1.3",
|
|
"description": "This is a chrome extension to inject a dify chatbot on any pages",
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["<all_urls>"],
|
|
"js": ["content.js"]
|
|
}
|
|
],
|
|
"permissions": ["webRequest", "storage"],
|
|
"action": {
|
|
"default_popup": "options.html",
|
|
"default_icon": {
|
|
"16": "images/16.png",
|
|
"32": "images/32.png",
|
|
"48": "images/48.png",
|
|
"128": "images/128.png"
|
|
|
|
}
|
|
},
|
|
"icons": {
|
|
"16": "images/16.png",
|
|
"32": "images/32.png",
|
|
"48": "images/48.png",
|
|
"128": "images/128.png"
|
|
}
|
|
} |