├── .editorconfig ├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── BUG.md │ ├── DOCS.md │ ├── MODIFICATION.md │ └── SUPPORT.md ├── PULL_REQUEST_TEMPLATE.md └── labels.json ├── .gitignore ├── .stylelintignore ├── .stylelintrc ├── LICENSE ├── README.md ├── assets ├── gmail-classic.ai ├── icons │ ├── 128 ~ 96.png │ ├── 128.png │ ├── 16.png │ ├── 32.png │ ├── 48.png │ └── 64.png ├── screenshot-chrome-webstore-small.png ├── screenshot-chrome-webstore.png ├── screenshot-full.png └── screenshot.png ├── dist ├── chrome.zip └── chrome │ ├── assets │ ├── 128 ~ 96.png │ ├── 128.png │ ├── 16.png │ ├── 32.png │ ├── 48.png │ └── 64.png │ ├── gmail.css │ └── manifest.json ├── gmail.css ├── original-source.css └── package.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/gmail-classic/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/gmail-classic/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/gmail-classic/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/BUG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/gmail-classic/HEAD/.github/ISSUE_TEMPLATE/BUG.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/DOCS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/gmail-classic/HEAD/.github/ISSUE_TEMPLATE/DOCS.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/MODIFICATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/gmail-classic/HEAD/.github/ISSUE_TEMPLATE/MODIFICATION.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/gmail-classic/HEAD/.github/ISSUE_TEMPLATE/SUPPORT.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/gmail-classic/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/gmail-classic/HEAD/.github/labels.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /.stylelintignore: -------------------------------------------------------------------------------- 1 | original-source.css 2 | -------------------------------------------------------------------------------- /.stylelintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/gmail-classic/HEAD/.stylelintrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/gmail-classic/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/gmail-classic/HEAD/README.md -------------------------------------------------------------------------------- /assets/gmail-classic.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/gmail-classic/HEAD/assets/gmail-classic.ai -------------------------------------------------------------------------------- /assets/icons/128 ~ 96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/gmail-classic/HEAD/assets/icons/128 ~ 96.png -------------------------------------------------------------------------------- /assets/icons/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/gmail-classic/HEAD/assets/icons/128.png -------------------------------------------------------------------------------- /assets/icons/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/gmail-classic/HEAD/assets/icons/16.png -------------------------------------------------------------------------------- /assets/icons/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/gmail-classic/HEAD/assets/icons/32.png -------------------------------------------------------------------------------- /assets/icons/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/gmail-classic/HEAD/assets/icons/48.png -------------------------------------------------------------------------------- /assets/icons/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/gmail-classic/HEAD/assets/icons/64.png -------------------------------------------------------------------------------- /assets/screenshot-chrome-webstore-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/gmail-classic/HEAD/assets/screenshot-chrome-webstore-small.png -------------------------------------------------------------------------------- /assets/screenshot-chrome-webstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/gmail-classic/HEAD/assets/screenshot-chrome-webstore.png -------------------------------------------------------------------------------- /assets/screenshot-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/gmail-classic/HEAD/assets/screenshot-full.png -------------------------------------------------------------------------------- /assets/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/gmail-classic/HEAD/assets/screenshot.png -------------------------------------------------------------------------------- /dist/chrome.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/gmail-classic/HEAD/dist/chrome.zip -------------------------------------------------------------------------------- /dist/chrome/assets/128 ~ 96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/gmail-classic/HEAD/dist/chrome/assets/128 ~ 96.png -------------------------------------------------------------------------------- /dist/chrome/assets/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/gmail-classic/HEAD/dist/chrome/assets/128.png -------------------------------------------------------------------------------- /dist/chrome/assets/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/gmail-classic/HEAD/dist/chrome/assets/16.png -------------------------------------------------------------------------------- /dist/chrome/assets/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/gmail-classic/HEAD/dist/chrome/assets/32.png -------------------------------------------------------------------------------- /dist/chrome/assets/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/gmail-classic/HEAD/dist/chrome/assets/48.png -------------------------------------------------------------------------------- /dist/chrome/assets/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/gmail-classic/HEAD/dist/chrome/assets/64.png -------------------------------------------------------------------------------- /dist/chrome/gmail.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/gmail-classic/HEAD/dist/chrome/gmail.css -------------------------------------------------------------------------------- /dist/chrome/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/gmail-classic/HEAD/dist/chrome/manifest.json -------------------------------------------------------------------------------- /gmail.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/gmail-classic/HEAD/gmail.css -------------------------------------------------------------------------------- /original-source.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/gmail-classic/HEAD/original-source.css -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellscape/gmail-classic/HEAD/package.json --------------------------------------------------------------------------------