├── .github └── FUNDING.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── icons ├── icon-app-store-dark.pxd ├── icon-app-store.pxd ├── icon-browser.pxd └── icon-macos.pxd ├── images ├── Apple │ ├── Mac │ │ ├── app.pxd │ │ ├── extension-settings.pxd │ │ ├── popup-add.pxd │ │ ├── popup.pxd │ │ ├── raw │ │ │ ├── app.png │ │ │ ├── extension-settings.png │ │ │ ├── popup-add.png │ │ │ ├── popup.png │ │ │ └── server-settings.png │ │ └── server-settings.pxd │ ├── Old-iPad-Pro-12.9 │ │ ├── app.pxd │ │ ├── extension-settings.pxd │ │ ├── popup-add.pxd │ │ ├── popup.pxd │ │ ├── raw │ │ │ ├── app.png │ │ │ ├── extension-settings.png │ │ │ ├── popup-add.png │ │ │ ├── popup.png │ │ │ └── server-settings.png │ │ └── server-settings.pxd │ ├── iPad-Pro-12.9 │ │ ├── app.pxd │ │ ├── extension-settings.pxd │ │ ├── popup-add.pxd │ │ ├── popup.pxd │ │ ├── raw │ │ │ ├── app.png │ │ │ ├── extension-settings.png │ │ │ ├── popup-add.png │ │ │ ├── popup.png │ │ │ └── server-settings.png │ │ └── server-settings.pxd │ ├── iPhone-5.5 │ │ ├── app.pxd │ │ ├── extension-settings.pxd │ │ ├── popup-add.pxd │ │ ├── popup.pxd │ │ ├── raw │ │ │ ├── app.png │ │ │ ├── extension-settings.png │ │ │ ├── popup-add.png │ │ │ ├── popup.png │ │ │ └── server-settings.png │ │ └── server-settings.pxd │ ├── iPhone-6.5 │ │ ├── app.pxd │ │ ├── extension-settings.pxd │ │ ├── popup-add.pxd │ │ ├── popup.pxd │ │ ├── raw │ │ │ ├── app.png │ │ │ ├── extension-settings.png │ │ │ ├── popup-add.png │ │ │ ├── popup.png │ │ │ └── server-settings.png │ │ └── server-settings.pxd │ └── iPhone-6.7 │ │ ├── app.png │ │ ├── extension-settings.png │ │ ├── popup-add.png │ │ ├── popup.png │ │ └── server-settings.png └── Firefox │ ├── context_menus_dark.png │ ├── context_menus_light.png │ ├── options_dark.png │ ├── options_light.png │ ├── options_server_dark.png │ ├── options_server_light.png │ ├── popup_add_download_dark.png │ ├── popup_add_download_light.png │ ├── popup_download_finished_dark.png │ ├── popup_download_finished_light.png │ ├── popup_download_pause_dark.png │ ├── popup_download_pause_light.png │ ├── popup_download_running_dark.png │ ├── popup_download_running_light.png │ ├── popup_no_download_dark.png │ ├── popup_no_download_light.png │ ├── popup_quick_settings_dark.png │ └── popup_quick_settings_light.png └── renovate.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [baptistecdr] 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | # Created by https://www.toptal.com/developers/gitignore/api/windows,macos,linux 3 | # Edit at https://www.toptal.com/developers/gitignore?templates=windows,macos,linux 4 | 5 | ### Linux ### 6 | *~ 7 | 8 | # temporary files which can be created if a process still has a handle open of a deleted file 9 | .fuse_hidden* 10 | 11 | # KDE directory preferences 12 | .directory 13 | 14 | # Linux trash folder which might appear on any partition or disk 15 | .Trash-* 16 | 17 | # .nfs files are created when an open file is removed but is still being accessed 18 | .nfs* 19 | 20 | ### macOS ### 21 | # General 22 | .DS_Store 23 | .AppleDouble 24 | .LSOverride 25 | 26 | # Icon must end with two \r 27 | Icon 28 | 29 | # Thumbnails 30 | ._* 31 | 32 | # Files that might appear in the root of a volume 33 | .DocumentRevisions-V100 34 | .fseventsd 35 | .Spotlight-V100 36 | .TemporaryItems 37 | .Trashes 38 | .VolumeIcon.icns 39 | .com.apple.timemachine.donotpresent 40 | 41 | # Directories potentially created on remote AFP share 42 | .AppleDB 43 | .AppleDesktop 44 | Network Trash Folder 45 | Temporary Items 46 | .apdisk 47 | 48 | ### Windows ### 49 | # Windows thumbnail cache files 50 | Thumbs.db 51 | Thumbs.db:encryptable 52 | ehthumbs.db 53 | ehthumbs_vista.db 54 | 55 | # Dump file 56 | *.stackdump 57 | 58 | # Folder config file 59 | [Dd]esktop.ini 60 | 61 | # Recycle Bin used on file shares 62 | $RECYCLE.BIN/ 63 | 64 | # Windows Installer files 65 | *.cab 66 | *.msi 67 | *.msix 68 | *.msm 69 | *.msp 70 | 71 | # Windows shortcuts 72 | *.lnk 73 | 74 | .idea 75 | 76 | dist/ 77 | 78 | # End of https://www.toptal.com/developers/gitignore/api/windows,macos,linux 79 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "aria2-integration"] 2 | path = aria2-integration 3 | url = https://github.com/baptistecdr/aria2-integration.git 4 | [submodule "aria2-integration-safari"] 5 | path = aria2-integration-safari 6 | url = https://github.com/baptistecdr/aria2-integration-safari.git 7 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019 Baptiste C. 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

Aria2 Integration

2 |

3 | Aria2 Integration allows you to redirect downloads to your Aria2 server. 4 |

5 | 6 |

7 | No task (Light) 8 | No task (Dark) 9 |

10 |

11 | Add Task (Light) 12 | Add Task (Dark) 13 |

14 |

15 | Task running (Light) 16 | Task running (Dark) 17 |

18 |

19 | Task paused (Light) 20 | Task paused (Dark) 21 |

22 |

23 | Task finished (Light) 24 | Task finished (Dark) 25 |

26 | 27 | ## Description 28 | 29 | Aria2 Integration allows you to redirect downloads to your Aria2 server. This setting can be tuned in the extension's 30 | preferences : 31 | 32 | - You can enable/disable this functionality 33 | - You can exclude some protocols, sites or/and file types 34 | 35 | In addition, you can send download links via the context menus: 36 | 37 | - Right click on a link and select your server in "Download with Aria2" 38 | - Right click on multiple text links and select you server in "Download with Aria2" 39 | 40 | By clicking on the extension icon, a popup appear. You can see the progress of each Aria2 server: 41 | 42 | - Total download/upload speed 43 | - Progress of each task and possibility to pause/resume/delete 44 | - Delete all finished tasks 45 | - Add links, torrent files, magnets link/files 46 | - A quick settings to enable/disable download redirection 47 | 48 | Finally, the extension is available in light/dark theme depending on your system preferences and you can add multiple servers in the extension's preferences. 49 | 50 | ## Quick start 51 | 52 | - [Microsoft Edge Store](https://microsoftedge.microsoft.com/addons/detail/aria2-integration/hmmpdilndjfmceolhbgjejogjaglbiel) 53 | - [Chrome Web Store](https://chrome.google.com/webstore/detail/aria2-integration/hnenidncmoeebipinjdfniagjnfjbapi) 54 | - [Firefox Extension Store](https://addons.mozilla.org/en-US/firefox/addon/aria2-extension/) 55 | -------------------------------------------------------------------------------- /icons/icon-app-store-dark.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/icons/icon-app-store-dark.pxd -------------------------------------------------------------------------------- /icons/icon-app-store.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/icons/icon-app-store.pxd -------------------------------------------------------------------------------- /icons/icon-browser.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/icons/icon-browser.pxd -------------------------------------------------------------------------------- /icons/icon-macos.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/icons/icon-macos.pxd -------------------------------------------------------------------------------- /images/Apple/Mac/app.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/images/Apple/Mac/app.pxd -------------------------------------------------------------------------------- /images/Apple/Mac/extension-settings.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/images/Apple/Mac/extension-settings.pxd -------------------------------------------------------------------------------- /images/Apple/Mac/popup-add.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/images/Apple/Mac/popup-add.pxd -------------------------------------------------------------------------------- /images/Apple/Mac/popup.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/images/Apple/Mac/popup.pxd -------------------------------------------------------------------------------- /images/Apple/Mac/raw/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/images/Apple/Mac/raw/app.png -------------------------------------------------------------------------------- /images/Apple/Mac/raw/extension-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/images/Apple/Mac/raw/extension-settings.png -------------------------------------------------------------------------------- /images/Apple/Mac/raw/popup-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/images/Apple/Mac/raw/popup-add.png -------------------------------------------------------------------------------- /images/Apple/Mac/raw/popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/images/Apple/Mac/raw/popup.png -------------------------------------------------------------------------------- /images/Apple/Mac/raw/server-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/images/Apple/Mac/raw/server-settings.png -------------------------------------------------------------------------------- /images/Apple/Mac/server-settings.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/images/Apple/Mac/server-settings.pxd -------------------------------------------------------------------------------- /images/Apple/Old-iPad-Pro-12.9/app.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/images/Apple/Old-iPad-Pro-12.9/app.pxd -------------------------------------------------------------------------------- /images/Apple/Old-iPad-Pro-12.9/extension-settings.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/images/Apple/Old-iPad-Pro-12.9/extension-settings.pxd -------------------------------------------------------------------------------- /images/Apple/Old-iPad-Pro-12.9/popup-add.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/images/Apple/Old-iPad-Pro-12.9/popup-add.pxd -------------------------------------------------------------------------------- /images/Apple/Old-iPad-Pro-12.9/popup.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/images/Apple/Old-iPad-Pro-12.9/popup.pxd -------------------------------------------------------------------------------- /images/Apple/Old-iPad-Pro-12.9/raw/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/images/Apple/Old-iPad-Pro-12.9/raw/app.png -------------------------------------------------------------------------------- /images/Apple/Old-iPad-Pro-12.9/raw/extension-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/images/Apple/Old-iPad-Pro-12.9/raw/extension-settings.png -------------------------------------------------------------------------------- /images/Apple/Old-iPad-Pro-12.9/raw/popup-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/images/Apple/Old-iPad-Pro-12.9/raw/popup-add.png -------------------------------------------------------------------------------- /images/Apple/Old-iPad-Pro-12.9/raw/popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/images/Apple/Old-iPad-Pro-12.9/raw/popup.png -------------------------------------------------------------------------------- /images/Apple/Old-iPad-Pro-12.9/raw/server-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/images/Apple/Old-iPad-Pro-12.9/raw/server-settings.png -------------------------------------------------------------------------------- /images/Apple/Old-iPad-Pro-12.9/server-settings.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/images/Apple/Old-iPad-Pro-12.9/server-settings.pxd -------------------------------------------------------------------------------- /images/Apple/iPad-Pro-12.9/app.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/images/Apple/iPad-Pro-12.9/app.pxd -------------------------------------------------------------------------------- /images/Apple/iPad-Pro-12.9/extension-settings.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/images/Apple/iPad-Pro-12.9/extension-settings.pxd -------------------------------------------------------------------------------- /images/Apple/iPad-Pro-12.9/popup-add.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/images/Apple/iPad-Pro-12.9/popup-add.pxd -------------------------------------------------------------------------------- /images/Apple/iPad-Pro-12.9/popup.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/images/Apple/iPad-Pro-12.9/popup.pxd -------------------------------------------------------------------------------- /images/Apple/iPad-Pro-12.9/raw/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/images/Apple/iPad-Pro-12.9/raw/app.png -------------------------------------------------------------------------------- /images/Apple/iPad-Pro-12.9/raw/extension-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/images/Apple/iPad-Pro-12.9/raw/extension-settings.png -------------------------------------------------------------------------------- /images/Apple/iPad-Pro-12.9/raw/popup-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/images/Apple/iPad-Pro-12.9/raw/popup-add.png -------------------------------------------------------------------------------- /images/Apple/iPad-Pro-12.9/raw/popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/images/Apple/iPad-Pro-12.9/raw/popup.png -------------------------------------------------------------------------------- /images/Apple/iPad-Pro-12.9/raw/server-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/images/Apple/iPad-Pro-12.9/raw/server-settings.png -------------------------------------------------------------------------------- /images/Apple/iPad-Pro-12.9/server-settings.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/images/Apple/iPad-Pro-12.9/server-settings.pxd -------------------------------------------------------------------------------- /images/Apple/iPhone-5.5/app.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/images/Apple/iPhone-5.5/app.pxd -------------------------------------------------------------------------------- /images/Apple/iPhone-5.5/extension-settings.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/images/Apple/iPhone-5.5/extension-settings.pxd -------------------------------------------------------------------------------- /images/Apple/iPhone-5.5/popup-add.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/images/Apple/iPhone-5.5/popup-add.pxd -------------------------------------------------------------------------------- /images/Apple/iPhone-5.5/popup.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/images/Apple/iPhone-5.5/popup.pxd -------------------------------------------------------------------------------- /images/Apple/iPhone-5.5/raw/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/images/Apple/iPhone-5.5/raw/app.png -------------------------------------------------------------------------------- /images/Apple/iPhone-5.5/raw/extension-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/images/Apple/iPhone-5.5/raw/extension-settings.png -------------------------------------------------------------------------------- /images/Apple/iPhone-5.5/raw/popup-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/images/Apple/iPhone-5.5/raw/popup-add.png -------------------------------------------------------------------------------- /images/Apple/iPhone-5.5/raw/popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/images/Apple/iPhone-5.5/raw/popup.png -------------------------------------------------------------------------------- /images/Apple/iPhone-5.5/raw/server-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/images/Apple/iPhone-5.5/raw/server-settings.png -------------------------------------------------------------------------------- /images/Apple/iPhone-5.5/server-settings.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/images/Apple/iPhone-5.5/server-settings.pxd -------------------------------------------------------------------------------- /images/Apple/iPhone-6.5/app.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/images/Apple/iPhone-6.5/app.pxd -------------------------------------------------------------------------------- /images/Apple/iPhone-6.5/extension-settings.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/images/Apple/iPhone-6.5/extension-settings.pxd -------------------------------------------------------------------------------- /images/Apple/iPhone-6.5/popup-add.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/images/Apple/iPhone-6.5/popup-add.pxd -------------------------------------------------------------------------------- /images/Apple/iPhone-6.5/popup.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/images/Apple/iPhone-6.5/popup.pxd -------------------------------------------------------------------------------- /images/Apple/iPhone-6.5/raw/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/images/Apple/iPhone-6.5/raw/app.png -------------------------------------------------------------------------------- /images/Apple/iPhone-6.5/raw/extension-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/images/Apple/iPhone-6.5/raw/extension-settings.png -------------------------------------------------------------------------------- /images/Apple/iPhone-6.5/raw/popup-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/images/Apple/iPhone-6.5/raw/popup-add.png -------------------------------------------------------------------------------- /images/Apple/iPhone-6.5/raw/popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/images/Apple/iPhone-6.5/raw/popup.png -------------------------------------------------------------------------------- /images/Apple/iPhone-6.5/raw/server-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/images/Apple/iPhone-6.5/raw/server-settings.png -------------------------------------------------------------------------------- /images/Apple/iPhone-6.5/server-settings.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/images/Apple/iPhone-6.5/server-settings.pxd -------------------------------------------------------------------------------- /images/Apple/iPhone-6.7/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/images/Apple/iPhone-6.7/app.png -------------------------------------------------------------------------------- /images/Apple/iPhone-6.7/extension-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/images/Apple/iPhone-6.7/extension-settings.png -------------------------------------------------------------------------------- /images/Apple/iPhone-6.7/popup-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/images/Apple/iPhone-6.7/popup-add.png -------------------------------------------------------------------------------- /images/Apple/iPhone-6.7/popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/images/Apple/iPhone-6.7/popup.png -------------------------------------------------------------------------------- /images/Apple/iPhone-6.7/server-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/images/Apple/iPhone-6.7/server-settings.png -------------------------------------------------------------------------------- /images/Firefox/context_menus_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/images/Firefox/context_menus_dark.png -------------------------------------------------------------------------------- /images/Firefox/context_menus_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/images/Firefox/context_menus_light.png -------------------------------------------------------------------------------- /images/Firefox/options_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/images/Firefox/options_dark.png -------------------------------------------------------------------------------- /images/Firefox/options_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/images/Firefox/options_light.png -------------------------------------------------------------------------------- /images/Firefox/options_server_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/images/Firefox/options_server_dark.png -------------------------------------------------------------------------------- /images/Firefox/options_server_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/images/Firefox/options_server_light.png -------------------------------------------------------------------------------- /images/Firefox/popup_add_download_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/images/Firefox/popup_add_download_dark.png -------------------------------------------------------------------------------- /images/Firefox/popup_add_download_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/images/Firefox/popup_add_download_light.png -------------------------------------------------------------------------------- /images/Firefox/popup_download_finished_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/images/Firefox/popup_download_finished_dark.png -------------------------------------------------------------------------------- /images/Firefox/popup_download_finished_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/images/Firefox/popup_download_finished_light.png -------------------------------------------------------------------------------- /images/Firefox/popup_download_pause_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/images/Firefox/popup_download_pause_dark.png -------------------------------------------------------------------------------- /images/Firefox/popup_download_pause_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/images/Firefox/popup_download_pause_light.png -------------------------------------------------------------------------------- /images/Firefox/popup_download_running_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/images/Firefox/popup_download_running_dark.png -------------------------------------------------------------------------------- /images/Firefox/popup_download_running_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/images/Firefox/popup_download_running_light.png -------------------------------------------------------------------------------- /images/Firefox/popup_no_download_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/images/Firefox/popup_no_download_dark.png -------------------------------------------------------------------------------- /images/Firefox/popup_no_download_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/images/Firefox/popup_no_download_light.png -------------------------------------------------------------------------------- /images/Firefox/popup_quick_settings_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/images/Firefox/popup_quick_settings_dark.png -------------------------------------------------------------------------------- /images/Firefox/popup_quick_settings_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptistecdr/aria2-extensions/4fde7fab6f5fb3df84ca48433c7e4c115fc84886/images/Firefox/popup_quick_settings_light.png -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": [ 3 | "github>baptistecdr/renovate-config" 4 | ], 5 | "packageRules": [ 6 | { 7 | "matchUpdateTypes": ["digest"], 8 | "automerge": true, 9 | "ignoreTests": true 10 | } 11 | ] 12 | } 13 | --------------------------------------------------------------------------------