Adria Jimenez

Results 34 comments of Adria Jimenez

The code has to be changed from ```js const chartJs = require('chart.js'); ``` to ```js const chartJs = require('chart.js/auto'); ``` Unfortunately looks like the project is dead

@bhushankumarl can you merge and release a new version?

For anyone coming here, while the merge request is not merged, you can do this "ugly solution" ```javascript const Trello = require('trello-node-api'); const trelloMethod = require('trello-node-api/lib/TrelloMethod'); const trello = new...

I'm having the same issue, after several hours, no more responses from the server com back

I'm also looking for an update as our company doesn't allow to use `--force` as it's considered a bad practice

For anyone coming here in 2024 from the trello exodus, [the documentation here is wrong](https://wekan.github.io/api/v7.41/#add_board_label) The REST call expects `application/json` and not `multipart/form-data` and the body should be like the...

I managed to convert it with one single command: `xcrun safari-web-extension-converter random-user-agent --macos-only` And you can see the popup automatically works: ![a](https://github.com/tarampampam/random-user-agent/assets/30565/853f6bce-8deb-4400-a2c9-2b8d86fec1b2) Unfortunately the user agent is not being changed,...

After some research, it looks like Safari does not support modifying request headers. So this extension will not be able to work as the extension modifies the request headers. I...

Looks like it's possible to do, this developer has created an open source extension that does that. You can see the background.js code here: https://github.com/katagaki/Unagent/blob/main/Extension/Resources/background.js

@tarampampam I've been testing this code: https://github.com/katagaki/Unagent/blob/main/Extension/Resources/background.js and it works properly in Safari. So I think we only need to modify the code of your extension to run this code...