├── 5b60709d-7b8d-4395-83a9-e7afbc525f7b.mp4 ├── CONTRIBUTION.md ├── LICENSE.md ├── README.md └── my-extension ├── .gitignore ├── config-overrides.js ├── package-lock.json ├── package.json ├── public ├── index.html ├── manifest.json └── robots.txt ├── src ├── README.md ├── background │ └── index.ts ├── components │ ├── CustomButton.tsx │ ├── CustomTimeInput.tsx │ ├── CustomToggle.tsx │ ├── Restrict.tsx │ └── WebsiteEditPage.tsx ├── content │ └── index.tsx ├── index.css ├── index.tsx ├── logo.svg ├── popup │ ├── App │ │ ├── App.tsx │ │ └── Assets │ │ │ ├── Background.jpeg │ │ │ └── ExtensionLogo.png │ └── index.tsx ├── react-app-env.d.ts └── zustand │ └── state.tsx ├── tailwind.config.js ├── tsconfig.json └── yarn.lock /5b60709d-7b8d-4395-83a9-e7afbc525f7b.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritipsingh/The-Productive-Champion/HEAD/5b60709d-7b8d-4395-83a9-e7afbc525f7b.mp4 -------------------------------------------------------------------------------- /CONTRIBUTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritipsingh/The-Productive-Champion/HEAD/CONTRIBUTION.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritipsingh/The-Productive-Champion/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritipsingh/The-Productive-Champion/HEAD/README.md -------------------------------------------------------------------------------- /my-extension/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritipsingh/The-Productive-Champion/HEAD/my-extension/.gitignore -------------------------------------------------------------------------------- /my-extension/config-overrides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritipsingh/The-Productive-Champion/HEAD/my-extension/config-overrides.js -------------------------------------------------------------------------------- /my-extension/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritipsingh/The-Productive-Champion/HEAD/my-extension/package-lock.json -------------------------------------------------------------------------------- /my-extension/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritipsingh/The-Productive-Champion/HEAD/my-extension/package.json -------------------------------------------------------------------------------- /my-extension/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritipsingh/The-Productive-Champion/HEAD/my-extension/public/index.html -------------------------------------------------------------------------------- /my-extension/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritipsingh/The-Productive-Champion/HEAD/my-extension/public/manifest.json -------------------------------------------------------------------------------- /my-extension/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritipsingh/The-Productive-Champion/HEAD/my-extension/public/robots.txt -------------------------------------------------------------------------------- /my-extension/src/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /my-extension/src/background/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritipsingh/The-Productive-Champion/HEAD/my-extension/src/background/index.ts -------------------------------------------------------------------------------- /my-extension/src/components/CustomButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritipsingh/The-Productive-Champion/HEAD/my-extension/src/components/CustomButton.tsx -------------------------------------------------------------------------------- /my-extension/src/components/CustomTimeInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritipsingh/The-Productive-Champion/HEAD/my-extension/src/components/CustomTimeInput.tsx -------------------------------------------------------------------------------- /my-extension/src/components/CustomToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritipsingh/The-Productive-Champion/HEAD/my-extension/src/components/CustomToggle.tsx -------------------------------------------------------------------------------- /my-extension/src/components/Restrict.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritipsingh/The-Productive-Champion/HEAD/my-extension/src/components/Restrict.tsx -------------------------------------------------------------------------------- /my-extension/src/components/WebsiteEditPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritipsingh/The-Productive-Champion/HEAD/my-extension/src/components/WebsiteEditPage.tsx -------------------------------------------------------------------------------- /my-extension/src/content/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritipsingh/The-Productive-Champion/HEAD/my-extension/src/content/index.tsx -------------------------------------------------------------------------------- /my-extension/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritipsingh/The-Productive-Champion/HEAD/my-extension/src/index.css -------------------------------------------------------------------------------- /my-extension/src/index.tsx: -------------------------------------------------------------------------------- 1 | import './popup/index' -------------------------------------------------------------------------------- /my-extension/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritipsingh/The-Productive-Champion/HEAD/my-extension/src/logo.svg -------------------------------------------------------------------------------- /my-extension/src/popup/App/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritipsingh/The-Productive-Champion/HEAD/my-extension/src/popup/App/App.tsx -------------------------------------------------------------------------------- /my-extension/src/popup/App/Assets/Background.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritipsingh/The-Productive-Champion/HEAD/my-extension/src/popup/App/Assets/Background.jpeg -------------------------------------------------------------------------------- /my-extension/src/popup/App/Assets/ExtensionLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritipsingh/The-Productive-Champion/HEAD/my-extension/src/popup/App/Assets/ExtensionLogo.png -------------------------------------------------------------------------------- /my-extension/src/popup/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritipsingh/The-Productive-Champion/HEAD/my-extension/src/popup/index.tsx -------------------------------------------------------------------------------- /my-extension/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /my-extension/src/zustand/state.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritipsingh/The-Productive-Champion/HEAD/my-extension/src/zustand/state.tsx -------------------------------------------------------------------------------- /my-extension/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritipsingh/The-Productive-Champion/HEAD/my-extension/tailwind.config.js -------------------------------------------------------------------------------- /my-extension/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritipsingh/The-Productive-Champion/HEAD/my-extension/tsconfig.json -------------------------------------------------------------------------------- /my-extension/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritipsingh/The-Productive-Champion/HEAD/my-extension/yarn.lock --------------------------------------------------------------------------------