├── .editorconfig ├── .gitignore ├── ISSUE_TEMPLATE.md ├── LICENSE.md ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── img └── arte.svg ├── manifest.json └── src └── arte-downloader.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuGuss/ARTE-7-Downloader/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | tags 2 | -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuGuss/ARTE-7-Downloader/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuGuss/ARTE-7-Downloader/HEAD/LICENSE.md -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuGuss/ARTE-7-Downloader/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuGuss/ARTE-7-Downloader/HEAD/README.md -------------------------------------------------------------------------------- /img/arte.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuGuss/ARTE-7-Downloader/HEAD/img/arte.svg -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuGuss/ARTE-7-Downloader/HEAD/manifest.json -------------------------------------------------------------------------------- /src/arte-downloader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuGuss/ARTE-7-Downloader/HEAD/src/arte-downloader.js --------------------------------------------------------------------------------