2023-10-19 20:54:43 +08:00
|
|
|
{
|
|
|
|
"manifest_version": 3,
|
|
|
|
"name": "Dify Chatbot",
|
2023-11-08 17:59:53 +08:00
|
|
|
"version": "1.5",
|
2023-10-19 20:54:43 +08:00
|
|
|
"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"
|
2023-11-08 17:59:53 +08:00
|
|
|
|
2023-10-19 20:54:43 +08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"icons": {
|
|
|
|
"16": "images/16.png",
|
|
|
|
"32": "images/32.png",
|
|
|
|
"48": "images/48.png",
|
|
|
|
"128": "images/128.png"
|
|
|
|
}
|
|
|
|
}
|