Aria2 Explorer v2.0 Known issues

···
  1. Download path setting fails due to different operating systems between local and remote Aria2

Temporary workaround:

  1. Please open the extension options configuration page.
  2. Press F12, switch to Console.
  3. Enter and execute the following code in the Console to remove the trailing \ in Location.
chrome.storage.local.get().then((configs) => {
    for (rpc of configs.rpcList) {
        rpc.location = rpc.location.slice(0, -1);
    }    
    chrome.storage.local.set(configs);
    console.log(configs)
})
  1. Saving multiple Aria2 RPC servers with the same URL and exporting to AriaNG causes duplicate RPC settings in AriaNG

Temporary workaround:

Delete the duplicate RPC settings in AriaNG General Settings. When saving the extension’s RPC settings, do not export them to AriaNG.

Built with Hugo | Theme Stack designed by Jimmy