Pham Ngoc Duong
Pham Ngoc Duong
The workaround @kmcaloon mentioned is the most conventional one here, but it's still pretty annoying to have to manually resave the global CSS file. We could have a plugin to...
Initially I thought it was git-related extensions or VSCode itself, wasting hours trying to find a fix, turns out that this crippling extension was the culprit. While calculating deps, this...
updated the roadmap with a few more features and references
I realized that it is impossible to ship all mentioned features/tweaks in one version, so I will move uncompleted items into future iteration plans. From now on Complexity will follow...
The idea is valid, but you might want to wait for the next major release as the extension is undergoing massive changes. https://github.com/pnd280/complexity/issues/19
I worked around this by setting `use_dynamic_url` to `false`. But even if you don't use `use_dynamic_url` in `manifest.ts`, the compiled `manifest.json` will still have it, and crxjs doesn't have the...
It's not only about this CSP issue; it's always been frustrating to work with CRXJS. The docs are the worst I've ever seen. The dev runtime doesn't even work on...
> This seems like a big deal. I've just got my first complaint about my extension not working (a user has Chrome Beta). Took me forever to find that this...
Shared link page freeze has been resolved in the latest release https://github.com/pnd280/complexity/releases/tag/v1.9.8
this is a workaround, use `?inline` instead of `?raw` if you're using tailwind. ```js import cssFile from "@/assets/cs.css?raw"; const style = document.createElement("style"); style.textContent = cssFile; document.head.append(style); ```