Replies: 1 comment 3 replies
-
manifest.json // This is currently {
"matches": [
"*://re.1688.com/*"
],
"js": [
"content-scripts/ali.js"
],
"css": [
"content-scripts/ali.css"
]
}
Want to achieve {
"matches": [
"*://re.1688.com/*"
],
"js": [
"vue.js",
"element-plus.js"
"content-scripts/ali.js"
],
"css": [
"style.css"
"content-scripts/ali.css"
]
}
|
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am using wxt framework to develop Chrome plugins. There are two content_script scripts corresponding to two different domain names. Both of these content_script scripts use vue element-plus or some third-party libraries. When packaged, the size is very large. I want to extract the third-party package and not package it into content_script, but load it through <script src=><-script>
Beta Was this translation helpful? Give feedback.
All reactions