├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── custom.md │ └── feature_request.md └── workflows │ └── publish.yml ├── .gitignore ├── .idea ├── $PRODUCT_WORKSPACE_FILE$ ├── InstagramDownloader.iml ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── compiler.xml ├── copyright │ ├── LGPL_3_0_License.xml │ ├── No_licence.xml │ └── profiles_settings.xml ├── dictionaries │ └── niclas.xml ├── encodings.xml ├── inspectionProfiles │ └── Project_Default.xml ├── misc.xml ├── modules.xml ├── saveactions_settings.xml ├── vcs.xml └── watcherTasks.xml ├── CHANGELOG.md ├── README.md ├── assets ├── icon.fig ├── icon_1029x1029.png ├── icon_128x128.png ├── icon_512x512.png ├── large_tile.png └── small_tile.png ├── docs ├── .gitignore ├── 404.html ├── Gemfile ├── Gemfile.lock ├── _config.yml ├── _includes │ ├── changelog.md │ ├── cookies.html │ ├── credits.md │ ├── donation.html │ ├── footer.html │ ├── head.html │ ├── header.html │ └── readme.md ├── _layouts │ ├── ad_layout.html │ ├── base.html │ └── default.html ├── assets │ ├── fixes.scss │ ├── main.scss │ └── paypal.svg ├── changelog │ └── index.md ├── favicon.png ├── index.md └── privacy-policy │ └── index.md ├── package.json ├── src ├── build.js ├── global.js ├── icons │ ├── close_black_24dp.svg │ ├── download_black.png │ ├── download_white.png │ ├── favicon.png │ ├── instagram.png │ ├── instagram.svg │ └── paypal.svg ├── manifest_chrome.json ├── manifest_firefox.json ├── options │ └── options.html ├── scss │ ├── alert.scss │ ├── main.scss │ └── modal.scss ├── ts │ ├── ForegroundMessageHandler.ts │ ├── QuerySelectors.ts │ ├── background │ │ ├── BackgroundMessageHandler.ts │ │ └── download.ts │ ├── components │ │ ├── Alert.ts │ │ └── Modal.ts │ ├── decorators.ts │ ├── downloaders │ │ ├── AccountImageDownloader.ts │ │ ├── Downloader.ts │ │ ├── HotkeyDownloader.ts │ │ ├── PostDownloader.ts │ │ ├── StoryDownloader.ts │ │ └── download-functions.ts │ ├── functions.ts │ ├── globals.d.ts │ ├── helper-classes │ │ ├── DomObserver.ts │ │ ├── EventHandler.ts │ │ └── URLChangeEmitter.ts │ ├── index.ts │ └── modles │ │ ├── extension.ts │ │ ├── post.ts │ │ ├── story.ts │ │ └── typeguards.ts └── tsconfig.json ├── tslint.json ├── webpack.config.js └── yarn.lock /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/$PRODUCT_WORKSPACE_FILE$: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/.idea/$PRODUCT_WORKSPACE_FILE$ -------------------------------------------------------------------------------- /.idea/InstagramDownloader.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/.idea/InstagramDownloader.iml -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/LGPL_3_0_License.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/.idea/copyright/LGPL_3_0_License.xml -------------------------------------------------------------------------------- /.idea/copyright/No_licence.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/.idea/copyright/No_licence.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/dictionaries/niclas.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/.idea/dictionaries/niclas.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/saveactions_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/.idea/saveactions_settings.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/watcherTasks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/.idea/watcherTasks.xml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | docs/_includes/changelog.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | docs/_includes/readme.md -------------------------------------------------------------------------------- /assets/icon.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/assets/icon.fig -------------------------------------------------------------------------------- /assets/icon_1029x1029.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/assets/icon_1029x1029.png -------------------------------------------------------------------------------- /assets/icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/assets/icon_128x128.png -------------------------------------------------------------------------------- /assets/icon_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/assets/icon_512x512.png -------------------------------------------------------------------------------- /assets/large_tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/assets/large_tile.png -------------------------------------------------------------------------------- /assets/small_tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/assets/small_tile.png -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/docs/Gemfile -------------------------------------------------------------------------------- /docs/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/docs/Gemfile.lock -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/_includes/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/docs/_includes/changelog.md -------------------------------------------------------------------------------- /docs/_includes/cookies.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/docs/_includes/cookies.html -------------------------------------------------------------------------------- /docs/_includes/credits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/docs/_includes/credits.md -------------------------------------------------------------------------------- /docs/_includes/donation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/docs/_includes/donation.html -------------------------------------------------------------------------------- /docs/_includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/docs/_includes/footer.html -------------------------------------------------------------------------------- /docs/_includes/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/docs/_includes/head.html -------------------------------------------------------------------------------- /docs/_includes/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/docs/_includes/header.html -------------------------------------------------------------------------------- /docs/_includes/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/docs/_includes/readme.md -------------------------------------------------------------------------------- /docs/_layouts/ad_layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/docs/_layouts/ad_layout.html -------------------------------------------------------------------------------- /docs/_layouts/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/docs/_layouts/base.html -------------------------------------------------------------------------------- /docs/_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/docs/_layouts/default.html -------------------------------------------------------------------------------- /docs/assets/fixes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/docs/assets/fixes.scss -------------------------------------------------------------------------------- /docs/assets/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/docs/assets/main.scss -------------------------------------------------------------------------------- /docs/assets/paypal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/docs/assets/paypal.svg -------------------------------------------------------------------------------- /docs/changelog/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/docs/changelog/index.md -------------------------------------------------------------------------------- /docs/favicon.png: -------------------------------------------------------------------------------- 1 | ../src/icons/favicon.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/privacy-policy/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/docs/privacy-policy/index.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/package.json -------------------------------------------------------------------------------- /src/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/src/build.js -------------------------------------------------------------------------------- /src/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/src/global.js -------------------------------------------------------------------------------- /src/icons/close_black_24dp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/src/icons/close_black_24dp.svg -------------------------------------------------------------------------------- /src/icons/download_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/src/icons/download_black.png -------------------------------------------------------------------------------- /src/icons/download_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/src/icons/download_white.png -------------------------------------------------------------------------------- /src/icons/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/src/icons/favicon.png -------------------------------------------------------------------------------- /src/icons/instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/src/icons/instagram.png -------------------------------------------------------------------------------- /src/icons/instagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/src/icons/instagram.svg -------------------------------------------------------------------------------- /src/icons/paypal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/src/icons/paypal.svg -------------------------------------------------------------------------------- /src/manifest_chrome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/src/manifest_chrome.json -------------------------------------------------------------------------------- /src/manifest_firefox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/src/manifest_firefox.json -------------------------------------------------------------------------------- /src/options/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/src/options/options.html -------------------------------------------------------------------------------- /src/scss/alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/src/scss/alert.scss -------------------------------------------------------------------------------- /src/scss/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/src/scss/main.scss -------------------------------------------------------------------------------- /src/scss/modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/src/scss/modal.scss -------------------------------------------------------------------------------- /src/ts/ForegroundMessageHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/src/ts/ForegroundMessageHandler.ts -------------------------------------------------------------------------------- /src/ts/QuerySelectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/src/ts/QuerySelectors.ts -------------------------------------------------------------------------------- /src/ts/background/BackgroundMessageHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/src/ts/background/BackgroundMessageHandler.ts -------------------------------------------------------------------------------- /src/ts/background/download.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/src/ts/background/download.ts -------------------------------------------------------------------------------- /src/ts/components/Alert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/src/ts/components/Alert.ts -------------------------------------------------------------------------------- /src/ts/components/Modal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/src/ts/components/Modal.ts -------------------------------------------------------------------------------- /src/ts/decorators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/src/ts/decorators.ts -------------------------------------------------------------------------------- /src/ts/downloaders/AccountImageDownloader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/src/ts/downloaders/AccountImageDownloader.ts -------------------------------------------------------------------------------- /src/ts/downloaders/Downloader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/src/ts/downloaders/Downloader.ts -------------------------------------------------------------------------------- /src/ts/downloaders/HotkeyDownloader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/src/ts/downloaders/HotkeyDownloader.ts -------------------------------------------------------------------------------- /src/ts/downloaders/PostDownloader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/src/ts/downloaders/PostDownloader.ts -------------------------------------------------------------------------------- /src/ts/downloaders/StoryDownloader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/src/ts/downloaders/StoryDownloader.ts -------------------------------------------------------------------------------- /src/ts/downloaders/download-functions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/src/ts/downloaders/download-functions.ts -------------------------------------------------------------------------------- /src/ts/functions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/src/ts/functions.ts -------------------------------------------------------------------------------- /src/ts/globals.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/src/ts/globals.d.ts -------------------------------------------------------------------------------- /src/ts/helper-classes/DomObserver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/src/ts/helper-classes/DomObserver.ts -------------------------------------------------------------------------------- /src/ts/helper-classes/EventHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/src/ts/helper-classes/EventHandler.ts -------------------------------------------------------------------------------- /src/ts/helper-classes/URLChangeEmitter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/src/ts/helper-classes/URLChangeEmitter.ts -------------------------------------------------------------------------------- /src/ts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/src/ts/index.ts -------------------------------------------------------------------------------- /src/ts/modles/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/src/ts/modles/extension.ts -------------------------------------------------------------------------------- /src/ts/modles/post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/src/ts/modles/post.ts -------------------------------------------------------------------------------- /src/ts/modles/story.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/src/ts/modles/story.ts -------------------------------------------------------------------------------- /src/ts/modles/typeguards.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/src/ts/modles/typeguards.ts -------------------------------------------------------------------------------- /src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/src/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/tslint.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igdownloader/InstagramDownloader/HEAD/yarn.lock --------------------------------------------------------------------------------