Is the chrome extension still active?
About
Seems like the chrome extension is not available anymore, is the project being maintained, any updates?
Reproduction
Chrome extension link: https://chrome.google.com/webstore/detail/urql-devtools/mcfphkbpmkbeofnkjehahlmidmceblmm
Expected result
- page to download extension
- otherwise provide an external
crxfile
Actual result
- 404: The requested URL was not found on this server.
Additional info
| environment | version |
|---|---|
| browser | Chrome Version 126.0.6478.63 (Official Build) (arm64) |
🤔
I am experiencing issues installing the extension on my new machine. Would it be possible for someone to assist with troubleshooting this matter? @JoviDeCroock 🙏
I've just hit this too.
You can manually add the extension.
- Clone this repo:
git clone [email protected]:urql-graphql/urql-devtools.git - Follow first three steps of Development guide:
a. Install pnpm
b. Install deps with pnpm:
pnpm ic. Build the extension:pnpm run build - Open chrome and go to
chrome://extensions/ - Enable Developer mode in top right corner
- Click on Load Unpacked
- Select extensions build folder
dist/extension - Extension will be added and two files will be generated inside of dist folder: .crx and .pem (they are used for extension update)
- You will get error regarding extensions manifest version but as of now extension is still working (Chrome v131.0.6778.86)
You can manually add the extension.
- Clone this repo:
git clone [email protected]:urql-graphql/urql-devtools.git- Follow first three steps of Development guide: a. Install pnpm b. Install deps with pnpm:
pnpm ic. Build the extension:pnpm run build- Open chrome and go to
chrome://extensions/- Enable Developer mode in top right corner
- Click on Load Unpacked
- Select extensions build folder
dist/extension- Extension will be added and two files will be generated inside of dist folder: .crx and .pem (they are used for extension update)
- You will get error regarding extensions manifest version but as of now extension is still working (Chrome v131.0.6778.86)
This works! thank you!
Would be great to see this on the chrome browser tools again though! Thank you all!
Today my Chrome disabled the extension as being incompatible. I guess it is no longer usable unless it is migrated to manifest v3.
Any plan to upgrade it ? (I tried myself but it's a bit more complicated than to just tweak the manifest file. background.js needs to be migrated to a web worker among other things...)
Personally I'd love something closer to the tanstack query debugger which doesn't use dev tools at all but is a floating window that can be optionally opened.
+1 voting up that issue I personally prefer to have dev tools rather than don't. If it will be like tanstack's it would be cool!
Hello everyone! I reworked the manifest and split it for firefox and chrome so the extension will work on the latter.
If you care to test it out or just urgently need it, please build it, you'll find the directories split between chrome and firefox to sideload the extension.
A better guide to build it:
- Go to github releases, download the latest version
- Unpack the release into folder you want
- cd folder && npm i -g yarn
- nvm install && nvm use
- yarn install
- yarn run build