gitextract_gpcjyyrr/ ├── .gitignore ├── LICENSE ├── README.md ├── assets/ │ └── css/ │ ├── extra.css │ └── index.css ├── crowdin.yml ├── flatpak/ │ ├── io.github.aandrew_me.ytdn.desktop │ └── io.github.aandrew_me.ytdn.metainfo.xml ├── html/ │ ├── about.html │ ├── compressor.html │ ├── history.html │ ├── index.html │ ├── playlist.html │ ├── playlist_new.html │ └── preferences.html ├── linux.sh ├── mac.sh ├── main.js ├── package.json ├── resources/ │ └── icon.icns ├── src/ │ ├── common.js │ ├── compressor.js │ ├── history.js │ ├── index.js │ ├── playlist.js │ ├── playlist_new.js │ ├── preferences.js │ ├── renderer.js │ └── types.d.ts ├── translations/ │ ├── ar-SA.json │ ├── bn-BD.json │ ├── de-DE.json │ ├── el-GR.json │ ├── en.json │ ├── es-ES.json │ ├── fa-IR.json │ ├── fi-FI.json │ ├── fr-FR.json │ ├── hi-IN.json │ ├── hu-HU.json │ ├── i18n-init.js │ ├── i18n.js │ ├── it-IT.json │ ├── ja-JP.json │ ├── ne-NP.json │ ├── pl-PL.json │ ├── pt-BR.json │ ├── ru-RU.json │ ├── tr-TR.json │ ├── uk-UA.json │ ├── vi-VN.json │ ├── zh-CN.json │ └── zh-TW.json ├── tsconfig.json ├── windows.ps1 └── ytdownloader.json