├── .github └── workflows │ └── submit.yml ├── .gitignore ├── .prettierrc.mjs ├── LICENSE ├── README.md ├── assets ├── _locales │ ├── ar │ │ └── messages.json │ ├── bg │ │ └── messages.json │ ├── de │ │ └── messages.json │ ├── el │ │ └── messages.json │ ├── en │ │ └── messages.json │ ├── es │ │ └── messages.json │ ├── fr │ │ └── messages.json │ ├── it │ │ └── messages.json │ ├── ja │ │ └── messages.json │ ├── ko │ │ └── messages.json │ ├── nl │ │ └── messages.json │ ├── pl │ │ └── messages.json │ ├── pt_BR │ │ └── messages.json │ ├── ru │ │ └── messages.json │ ├── tr │ │ └── messages.json │ └── uk │ │ └── messages.json └── icon.png ├── package.json ├── plasmo.md ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── src ├── components │ ├── Buttons.tsx │ └── Controller │ │ ├── Buttons │ │ ├── Autoskip │ │ │ └── index.tsx │ │ ├── Download │ │ │ ├── index.tsx │ │ │ └── style.css │ │ └── Volume │ │ │ ├── index.tsx │ │ │ └── style.css │ │ ├── ProgressBarHorizontal │ │ ├── index.tsx │ │ └── style.css │ │ ├── ProgressBarVertical │ │ ├── index.tsx │ │ └── style.css │ │ ├── SmartContainer │ │ ├── index.tsx │ │ └── style.css │ │ ├── ViewIndicator │ │ ├── index.tsx │ │ └── style.css │ │ ├── icons │ │ ├── download.svg │ │ ├── loader.svg │ │ ├── volume-off.svg │ │ └── volume.svg │ │ ├── index.tsx │ │ └── style.css ├── contents │ └── main.ts ├── modules │ ├── Injector.tsx │ ├── IntervalInjector.tsx │ └── instagram │ │ ├── Home.tsx │ │ ├── Reels.tsx │ │ ├── Stories.tsx │ │ └── index.tsx ├── popup │ ├── index.tsx │ └── style.css ├── sandboxes │ └── demo.tsx └── utils │ ├── constants.ts │ └── functions.ts └── tsconfig.json /.github/workflows/submit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirkabal/better-videos-for-instagram/HEAD/.github/workflows/submit.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirkabal/better-videos-for-instagram/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirkabal/better-videos-for-instagram/HEAD/.prettierrc.mjs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirkabal/better-videos-for-instagram/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirkabal/better-videos-for-instagram/HEAD/README.md -------------------------------------------------------------------------------- /assets/_locales/ar/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirkabal/better-videos-for-instagram/HEAD/assets/_locales/ar/messages.json -------------------------------------------------------------------------------- /assets/_locales/bg/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirkabal/better-videos-for-instagram/HEAD/assets/_locales/bg/messages.json -------------------------------------------------------------------------------- /assets/_locales/de/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirkabal/better-videos-for-instagram/HEAD/assets/_locales/de/messages.json -------------------------------------------------------------------------------- /assets/_locales/el/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirkabal/better-videos-for-instagram/HEAD/assets/_locales/el/messages.json -------------------------------------------------------------------------------- /assets/_locales/en/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirkabal/better-videos-for-instagram/HEAD/assets/_locales/en/messages.json -------------------------------------------------------------------------------- /assets/_locales/es/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirkabal/better-videos-for-instagram/HEAD/assets/_locales/es/messages.json -------------------------------------------------------------------------------- /assets/_locales/fr/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirkabal/better-videos-for-instagram/HEAD/assets/_locales/fr/messages.json -------------------------------------------------------------------------------- /assets/_locales/it/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirkabal/better-videos-for-instagram/HEAD/assets/_locales/it/messages.json -------------------------------------------------------------------------------- /assets/_locales/ja/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirkabal/better-videos-for-instagram/HEAD/assets/_locales/ja/messages.json -------------------------------------------------------------------------------- /assets/_locales/ko/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirkabal/better-videos-for-instagram/HEAD/assets/_locales/ko/messages.json -------------------------------------------------------------------------------- /assets/_locales/nl/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirkabal/better-videos-for-instagram/HEAD/assets/_locales/nl/messages.json -------------------------------------------------------------------------------- /assets/_locales/pl/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirkabal/better-videos-for-instagram/HEAD/assets/_locales/pl/messages.json -------------------------------------------------------------------------------- /assets/_locales/pt_BR/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirkabal/better-videos-for-instagram/HEAD/assets/_locales/pt_BR/messages.json -------------------------------------------------------------------------------- /assets/_locales/ru/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirkabal/better-videos-for-instagram/HEAD/assets/_locales/ru/messages.json -------------------------------------------------------------------------------- /assets/_locales/tr/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirkabal/better-videos-for-instagram/HEAD/assets/_locales/tr/messages.json -------------------------------------------------------------------------------- /assets/_locales/uk/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirkabal/better-videos-for-instagram/HEAD/assets/_locales/uk/messages.json -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirkabal/better-videos-for-instagram/HEAD/assets/icon.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirkabal/better-videos-for-instagram/HEAD/package.json -------------------------------------------------------------------------------- /plasmo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirkabal/better-videos-for-instagram/HEAD/plasmo.md -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirkabal/better-videos-for-instagram/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirkabal/better-videos-for-instagram/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /src/components/Buttons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirkabal/better-videos-for-instagram/HEAD/src/components/Buttons.tsx -------------------------------------------------------------------------------- /src/components/Controller/Buttons/Autoskip/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirkabal/better-videos-for-instagram/HEAD/src/components/Controller/Buttons/Autoskip/index.tsx -------------------------------------------------------------------------------- /src/components/Controller/Buttons/Download/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirkabal/better-videos-for-instagram/HEAD/src/components/Controller/Buttons/Download/index.tsx -------------------------------------------------------------------------------- /src/components/Controller/Buttons/Download/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirkabal/better-videos-for-instagram/HEAD/src/components/Controller/Buttons/Download/style.css -------------------------------------------------------------------------------- /src/components/Controller/Buttons/Volume/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirkabal/better-videos-for-instagram/HEAD/src/components/Controller/Buttons/Volume/index.tsx -------------------------------------------------------------------------------- /src/components/Controller/Buttons/Volume/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirkabal/better-videos-for-instagram/HEAD/src/components/Controller/Buttons/Volume/style.css -------------------------------------------------------------------------------- /src/components/Controller/ProgressBarHorizontal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirkabal/better-videos-for-instagram/HEAD/src/components/Controller/ProgressBarHorizontal/index.tsx -------------------------------------------------------------------------------- /src/components/Controller/ProgressBarHorizontal/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirkabal/better-videos-for-instagram/HEAD/src/components/Controller/ProgressBarHorizontal/style.css -------------------------------------------------------------------------------- /src/components/Controller/ProgressBarVertical/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirkabal/better-videos-for-instagram/HEAD/src/components/Controller/ProgressBarVertical/index.tsx -------------------------------------------------------------------------------- /src/components/Controller/ProgressBarVertical/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirkabal/better-videos-for-instagram/HEAD/src/components/Controller/ProgressBarVertical/style.css -------------------------------------------------------------------------------- /src/components/Controller/SmartContainer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirkabal/better-videos-for-instagram/HEAD/src/components/Controller/SmartContainer/index.tsx -------------------------------------------------------------------------------- /src/components/Controller/SmartContainer/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirkabal/better-videos-for-instagram/HEAD/src/components/Controller/SmartContainer/style.css -------------------------------------------------------------------------------- /src/components/Controller/ViewIndicator/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirkabal/better-videos-for-instagram/HEAD/src/components/Controller/ViewIndicator/index.tsx -------------------------------------------------------------------------------- /src/components/Controller/ViewIndicator/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirkabal/better-videos-for-instagram/HEAD/src/components/Controller/ViewIndicator/style.css -------------------------------------------------------------------------------- /src/components/Controller/icons/download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirkabal/better-videos-for-instagram/HEAD/src/components/Controller/icons/download.svg -------------------------------------------------------------------------------- /src/components/Controller/icons/loader.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirkabal/better-videos-for-instagram/HEAD/src/components/Controller/icons/loader.svg -------------------------------------------------------------------------------- /src/components/Controller/icons/volume-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirkabal/better-videos-for-instagram/HEAD/src/components/Controller/icons/volume-off.svg -------------------------------------------------------------------------------- /src/components/Controller/icons/volume.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirkabal/better-videos-for-instagram/HEAD/src/components/Controller/icons/volume.svg -------------------------------------------------------------------------------- /src/components/Controller/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirkabal/better-videos-for-instagram/HEAD/src/components/Controller/index.tsx -------------------------------------------------------------------------------- /src/components/Controller/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirkabal/better-videos-for-instagram/HEAD/src/components/Controller/style.css -------------------------------------------------------------------------------- /src/contents/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirkabal/better-videos-for-instagram/HEAD/src/contents/main.ts -------------------------------------------------------------------------------- /src/modules/Injector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirkabal/better-videos-for-instagram/HEAD/src/modules/Injector.tsx -------------------------------------------------------------------------------- /src/modules/IntervalInjector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirkabal/better-videos-for-instagram/HEAD/src/modules/IntervalInjector.tsx -------------------------------------------------------------------------------- /src/modules/instagram/Home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirkabal/better-videos-for-instagram/HEAD/src/modules/instagram/Home.tsx -------------------------------------------------------------------------------- /src/modules/instagram/Reels.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirkabal/better-videos-for-instagram/HEAD/src/modules/instagram/Reels.tsx -------------------------------------------------------------------------------- /src/modules/instagram/Stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirkabal/better-videos-for-instagram/HEAD/src/modules/instagram/Stories.tsx -------------------------------------------------------------------------------- /src/modules/instagram/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirkabal/better-videos-for-instagram/HEAD/src/modules/instagram/index.tsx -------------------------------------------------------------------------------- /src/popup/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirkabal/better-videos-for-instagram/HEAD/src/popup/index.tsx -------------------------------------------------------------------------------- /src/popup/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirkabal/better-videos-for-instagram/HEAD/src/popup/style.css -------------------------------------------------------------------------------- /src/sandboxes/demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirkabal/better-videos-for-instagram/HEAD/src/sandboxes/demo.tsx -------------------------------------------------------------------------------- /src/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirkabal/better-videos-for-instagram/HEAD/src/utils/constants.ts -------------------------------------------------------------------------------- /src/utils/functions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirkabal/better-videos-for-instagram/HEAD/src/utils/functions.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirkabal/better-videos-for-instagram/HEAD/tsconfig.json --------------------------------------------------------------------------------