urql-devtools icon indicating copy to clipboard operation
urql-devtools copied to clipboard

Is the chrome extension still active?

Open nayemalam opened this issue 1 year ago • 12 comments

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 crx file

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)

nayemalam avatar Jun 21 '24 16:06 nayemalam

🤔

Eigilak avatar Oct 23 '24 15:10 Eigilak

I am experiencing issues installing the extension on my new machine. Would it be possible for someone to assist with troubleshooting this matter? @JoviDeCroock 🙏

hkjorgensen avatar Oct 29 '24 08:10 hkjorgensen

I've just hit this too.

linucks avatar Nov 21 '24 17:11 linucks

You can manually add the extension.

  1. Clone this repo: git clone [email protected]:urql-graphql/urql-devtools.git
  2. Follow first three steps of Development guide: a. Install pnpm b. Install deps with pnpm: pnpm i c. Build the extension: pnpm run build
  3. Open chrome and go to chrome://extensions/
  4. Enable Developer mode in top right corner
  5. Click on Load Unpacked
  6. Select extensions build folder dist/extension
  7. Extension will be added and two files will be generated inside of dist folder: .crx and .pem (they are used for extension update)
  8. You will get error regarding extensions manifest version but as of now extension is still working (Chrome v131.0.6778.86)

nik27 avatar Dec 06 '24 09:12 nik27

You can manually add the extension.

  1. Clone this repo: git clone [email protected]:urql-graphql/urql-devtools.git
  2. Follow first three steps of Development guide: a. Install pnpm b. Install deps with pnpm: pnpm i c. Build the extension: pnpm run build
  3. Open chrome and go to chrome://extensions/
  4. Enable Developer mode in top right corner
  5. Click on Load Unpacked
  6. Select extensions build folder dist/extension
  7. Extension will be added and two files will be generated inside of dist folder: .crx and .pem (they are used for extension update)
  8. 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!

BuddhikaGeasman avatar Dec 06 '24 16:12 BuddhikaGeasman

Would be great to see this on the chrome browser tools again though! Thank you all!

grassroots-labs-admin avatar Feb 14 '25 05:02 grassroots-labs-admin

Today my Chrome disabled the extension as being incompatible. I guess it is no longer usable unless it is migrated to manifest v3.

WIStudent avatar Mar 04 '25 12:03 WIStudent

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...)

Fenykepy avatar Mar 25 '25 15:03 Fenykepy

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.

maxcan avatar Apr 15 '25 00:04 maxcan

+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!

barbarossa95 avatar May 07 '25 12:05 barbarossa95

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.

giacomocerquone avatar Jul 20 '25 22:07 giacomocerquone

A better guide to build it:

  1. Go to github releases, download the latest version
  2. Unpack the release into folder you want
  3. cd folder && npm i -g yarn
  4. nvm install && nvm use
  5. yarn install
  6. yarn run build

wennerryle avatar Nov 07 '25 10:11 wennerryle