├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── documentation.md │ └── feature_request.md └── PULL_REQUEST_TEMPLATE.md ├── 404.html ├── CONTRIBUTING.md ├── License.md ├── README.md ├── background.js ├── content.js ├── icon.png ├── jest.setup.js ├── manifest.json ├── package.json ├── popup.css ├── popup.html ├── popup.js ├── translate.js └── translate.test.js /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohit32999/LexiShift/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohit32999/LexiShift/HEAD/.github/ISSUE_TEMPLATE/documentation.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohit32999/LexiShift/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohit32999/LexiShift/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohit32999/LexiShift/HEAD/404.html -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohit32999/LexiShift/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohit32999/LexiShift/HEAD/License.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohit32999/LexiShift/HEAD/README.md -------------------------------------------------------------------------------- /background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohit32999/LexiShift/HEAD/background.js -------------------------------------------------------------------------------- /content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohit32999/LexiShift/HEAD/content.js -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohit32999/LexiShift/HEAD/icon.png -------------------------------------------------------------------------------- /jest.setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohit32999/LexiShift/HEAD/jest.setup.js -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohit32999/LexiShift/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohit32999/LexiShift/HEAD/package.json -------------------------------------------------------------------------------- /popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohit32999/LexiShift/HEAD/popup.css -------------------------------------------------------------------------------- /popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohit32999/LexiShift/HEAD/popup.html -------------------------------------------------------------------------------- /popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohit32999/LexiShift/HEAD/popup.js -------------------------------------------------------------------------------- /translate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohit32999/LexiShift/HEAD/translate.js -------------------------------------------------------------------------------- /translate.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohit32999/LexiShift/HEAD/translate.test.js --------------------------------------------------------------------------------