├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── InstagramHelper.ts ├── InstagramHelperChrome.vbs ├── InstagramHelperDataViewer.html ├── LICENSE ├── README.md ├── _config.yml ├── dist └── InstagramHelper.js ├── images ├── 90143326-1e862a80-dd9b-11ea-9d6f-9365617c8ea1.png ├── 9218.jpg ├── InstagramHelperFlow.drawio ├── InstagramHelperFlow.svg └── chat_thread_id.png ├── package.json └── tsconfig.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pishangujeniya/instagram-helper/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pishangujeniya/instagram-helper/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pishangujeniya/instagram-helper/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pishangujeniya/instagram-helper/HEAD/.gitignore -------------------------------------------------------------------------------- /InstagramHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pishangujeniya/instagram-helper/HEAD/InstagramHelper.ts -------------------------------------------------------------------------------- /InstagramHelperChrome.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pishangujeniya/instagram-helper/HEAD/InstagramHelperChrome.vbs -------------------------------------------------------------------------------- /InstagramHelperDataViewer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pishangujeniya/instagram-helper/HEAD/InstagramHelperDataViewer.html -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pishangujeniya/instagram-helper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pishangujeniya/instagram-helper/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pishangujeniya/instagram-helper/HEAD/_config.yml -------------------------------------------------------------------------------- /dist/InstagramHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pishangujeniya/instagram-helper/HEAD/dist/InstagramHelper.js -------------------------------------------------------------------------------- /images/90143326-1e862a80-dd9b-11ea-9d6f-9365617c8ea1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pishangujeniya/instagram-helper/HEAD/images/90143326-1e862a80-dd9b-11ea-9d6f-9365617c8ea1.png -------------------------------------------------------------------------------- /images/9218.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pishangujeniya/instagram-helper/HEAD/images/9218.jpg -------------------------------------------------------------------------------- /images/InstagramHelperFlow.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pishangujeniya/instagram-helper/HEAD/images/InstagramHelperFlow.drawio -------------------------------------------------------------------------------- /images/InstagramHelperFlow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pishangujeniya/instagram-helper/HEAD/images/InstagramHelperFlow.svg -------------------------------------------------------------------------------- /images/chat_thread_id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pishangujeniya/instagram-helper/HEAD/images/chat_thread_id.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pishangujeniya/instagram-helper/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pishangujeniya/instagram-helper/HEAD/tsconfig.json --------------------------------------------------------------------------------