Provide canned responses by ChatGPT when you message with customers in Etsy
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"version": "1.0.3",
"name": "__MSG_appName__",
"description": "__MSG_appDesc__",
"homepage_url": "https://chrome.google.com",
"default_locale": "en",
"permissions": [
"contextMenus",
"tabs"
],
"host_permissions": [],
"version_name": "1.0.3",
"icons": {
"16": "src/assets/icons/logo.png",
"32": "src/assets/icons/logo.png",
"48": "src/assets/icons/logo.png"
},
"action": {
"default_icon": "src/assets/icons/logo.png"
},
"content_scripts": [
{
"js": [
"assets/content-script-loader.index.js.9b48c6db.e5b6c7be.js"
],
"matches": [
"<all_urls>"
],
"css": [
"assets/index.js.be4894e7.css"
],
"run_at": "document_start"
}
],
"background": {
"service_worker": "service-worker-loader.js",
"type": "module"
},
"web_accessible_resources": [
{
"matches": [
"<all_urls>"
],
"resources": [
"img/*",
"icon/*"
],
"use_dynamic_url": false
},
{
"matches": [
"<all_urls>"
],
"resources": [
"assets/index.js.9b48c6db.js"
],
"use_dynamic_url": true
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'; frame-src 'self'; child-src 'self'"
}
}