Ruud Brouwers
Ruud Brouwers
It seems like PKCE works fine when passing `null` for `clientSecret` when using the 'Authorization Code Flow': `final credentials = SpotifyApiCredentials(clientId, null);` `spotify = SpotifyApi.fromAuthCodeGrant(grant, responseUri);` But it doesn't work...
Okay I managed to find a sloppy workaround: I manually created an oauth2 client based on the saved credentials ('creds' here): ```dart import 'package:oauth2/src/client.dart'; import 'package:oauth2/src/credentials.dart'; Credentials credentials = Credentials(creds.accessToken!,...
Hi, thanks for your request. please have a look at #6. I might create a separate branch for Picamera2 at some point, though I am not expecting it to be...
Thanks for the example. I would be willing to make a configuration option to enable Picamera2 and I know the switch from Picamera to Picamera2 does not involve many changes...
I am aware of this, This happens due to the [required](https://developer.chrome.com/docs/extensions/mv3/intro/#start-the-conversion) migration to [manifest V3](https://developer.chrome.com/docs/extensions/mv3/intro/mv3-overview/) which does not allow for the old, quick, injection method anymore. I had to move...
Hi, thanks for reporting! I was not able to reproduce your issue on other websites. I tried injecting both CSS and JavaScript into google.com simultaneously and it worked fine. The...
I tested your code and the CSS and JS both load and work. I think I don't fully understand what the issue your facing is exactly. For me everything looks...
The logic for where something is saved is [here](https://github.com/Ruud14/Page-Manipulator/blob/a61a05cd5e29f8d6fb88b89a2aa3ea41156694ae/popup.js#L441). Before a file is stored using `chrome.storage.sync` it just stays in memory as far as I know. I don't explicitly put...
Hi @lunaberryyyy I tried reproducing your issue with the following on "https://doxy.me/"  This turns the usually white parts of their background blue. After reloading the page, the background is...
That is strange indeed. Could you try doing the following: - Disable all other injections (e.g. the "Doxy DarkMode.css" one). _I think the issue might be that there is a...