├── .gitignore ├── README.md ├── background.js ├── base.css ├── base.js ├── colors ├── base │ └── _base.scss ├── color-amber.css ├── color-blue.css ├── color-blue.scss ├── color-cyan.css ├── color-cyan.scss ├── color-greenlight.css ├── color-greenlight.scss ├── color-indigo.css ├── color-indigo.scss ├── color-lime.css ├── color-lime.scss ├── color-orange.css ├── color-pink.css ├── color-purple.css ├── color-red.css ├── color-teal.css └── color-yellow.css ├── css.js ├── fonts.css ├── icon-128.png ├── icon-16.png ├── icon-48.png ├── jquery-2.1.4.min.js ├── jquery.zoom.min.js ├── manifest.json ├── materialdesignicons-webfont.woff2 ├── materialdesignicons.min.css ├── shine-default.css ├── shine-grid.css ├── shine-grid.js ├── shine-list-classic.css ├── shine-list.css ├── shine-list.js ├── shine-shortcuts.js └── themes ├── base ├── _base.scss └── _dark.scss ├── nightmode.css ├── theme-black.css ├── theme-black.scss ├── theme-blue.css ├── theme-blue.scss ├── theme-brown.css ├── theme-brown.scss ├── theme-dark.css ├── theme-dark.scss ├── theme-gray.css ├── theme-gray.scss ├── theme-material.css ├── theme-material.scss ├── theme-modernwhite.css ├── theme-violet.css └── theme-violet.scss /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.scss 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotvhs/shine-unofficial/HEAD/README.md -------------------------------------------------------------------------------- /background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotvhs/shine-unofficial/HEAD/background.js -------------------------------------------------------------------------------- /base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotvhs/shine-unofficial/HEAD/base.css -------------------------------------------------------------------------------- /base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotvhs/shine-unofficial/HEAD/base.js -------------------------------------------------------------------------------- /colors/base/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotvhs/shine-unofficial/HEAD/colors/base/_base.scss -------------------------------------------------------------------------------- /colors/color-amber.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotvhs/shine-unofficial/HEAD/colors/color-amber.css -------------------------------------------------------------------------------- /colors/color-blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotvhs/shine-unofficial/HEAD/colors/color-blue.css -------------------------------------------------------------------------------- /colors/color-blue.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotvhs/shine-unofficial/HEAD/colors/color-blue.scss -------------------------------------------------------------------------------- /colors/color-cyan.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotvhs/shine-unofficial/HEAD/colors/color-cyan.css -------------------------------------------------------------------------------- /colors/color-cyan.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotvhs/shine-unofficial/HEAD/colors/color-cyan.scss -------------------------------------------------------------------------------- /colors/color-greenlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotvhs/shine-unofficial/HEAD/colors/color-greenlight.css -------------------------------------------------------------------------------- /colors/color-greenlight.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotvhs/shine-unofficial/HEAD/colors/color-greenlight.scss -------------------------------------------------------------------------------- /colors/color-indigo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotvhs/shine-unofficial/HEAD/colors/color-indigo.css -------------------------------------------------------------------------------- /colors/color-indigo.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotvhs/shine-unofficial/HEAD/colors/color-indigo.scss -------------------------------------------------------------------------------- /colors/color-lime.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotvhs/shine-unofficial/HEAD/colors/color-lime.css -------------------------------------------------------------------------------- /colors/color-lime.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotvhs/shine-unofficial/HEAD/colors/color-lime.scss -------------------------------------------------------------------------------- /colors/color-orange.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotvhs/shine-unofficial/HEAD/colors/color-orange.css -------------------------------------------------------------------------------- /colors/color-pink.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotvhs/shine-unofficial/HEAD/colors/color-pink.css -------------------------------------------------------------------------------- /colors/color-purple.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotvhs/shine-unofficial/HEAD/colors/color-purple.css -------------------------------------------------------------------------------- /colors/color-red.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotvhs/shine-unofficial/HEAD/colors/color-red.css -------------------------------------------------------------------------------- /colors/color-teal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotvhs/shine-unofficial/HEAD/colors/color-teal.css -------------------------------------------------------------------------------- /colors/color-yellow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotvhs/shine-unofficial/HEAD/colors/color-yellow.css -------------------------------------------------------------------------------- /css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotvhs/shine-unofficial/HEAD/css.js -------------------------------------------------------------------------------- /fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotvhs/shine-unofficial/HEAD/fonts.css -------------------------------------------------------------------------------- /icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotvhs/shine-unofficial/HEAD/icon-128.png -------------------------------------------------------------------------------- /icon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotvhs/shine-unofficial/HEAD/icon-16.png -------------------------------------------------------------------------------- /icon-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotvhs/shine-unofficial/HEAD/icon-48.png -------------------------------------------------------------------------------- /jquery-2.1.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotvhs/shine-unofficial/HEAD/jquery-2.1.4.min.js -------------------------------------------------------------------------------- /jquery.zoom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotvhs/shine-unofficial/HEAD/jquery.zoom.min.js -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotvhs/shine-unofficial/HEAD/manifest.json -------------------------------------------------------------------------------- /materialdesignicons-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotvhs/shine-unofficial/HEAD/materialdesignicons-webfont.woff2 -------------------------------------------------------------------------------- /materialdesignicons.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotvhs/shine-unofficial/HEAD/materialdesignicons.min.css -------------------------------------------------------------------------------- /shine-default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotvhs/shine-unofficial/HEAD/shine-default.css -------------------------------------------------------------------------------- /shine-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotvhs/shine-unofficial/HEAD/shine-grid.css -------------------------------------------------------------------------------- /shine-grid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotvhs/shine-unofficial/HEAD/shine-grid.js -------------------------------------------------------------------------------- /shine-list-classic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotvhs/shine-unofficial/HEAD/shine-list-classic.css -------------------------------------------------------------------------------- /shine-list.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotvhs/shine-unofficial/HEAD/shine-list.css -------------------------------------------------------------------------------- /shine-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotvhs/shine-unofficial/HEAD/shine-list.js -------------------------------------------------------------------------------- /shine-shortcuts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotvhs/shine-unofficial/HEAD/shine-shortcuts.js -------------------------------------------------------------------------------- /themes/base/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotvhs/shine-unofficial/HEAD/themes/base/_base.scss -------------------------------------------------------------------------------- /themes/base/_dark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotvhs/shine-unofficial/HEAD/themes/base/_dark.scss -------------------------------------------------------------------------------- /themes/nightmode.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotvhs/shine-unofficial/HEAD/themes/nightmode.css -------------------------------------------------------------------------------- /themes/theme-black.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotvhs/shine-unofficial/HEAD/themes/theme-black.css -------------------------------------------------------------------------------- /themes/theme-black.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotvhs/shine-unofficial/HEAD/themes/theme-black.scss -------------------------------------------------------------------------------- /themes/theme-blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotvhs/shine-unofficial/HEAD/themes/theme-blue.css -------------------------------------------------------------------------------- /themes/theme-blue.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotvhs/shine-unofficial/HEAD/themes/theme-blue.scss -------------------------------------------------------------------------------- /themes/theme-brown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotvhs/shine-unofficial/HEAD/themes/theme-brown.css -------------------------------------------------------------------------------- /themes/theme-brown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotvhs/shine-unofficial/HEAD/themes/theme-brown.scss -------------------------------------------------------------------------------- /themes/theme-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotvhs/shine-unofficial/HEAD/themes/theme-dark.css -------------------------------------------------------------------------------- /themes/theme-dark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotvhs/shine-unofficial/HEAD/themes/theme-dark.scss -------------------------------------------------------------------------------- /themes/theme-gray.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotvhs/shine-unofficial/HEAD/themes/theme-gray.css -------------------------------------------------------------------------------- /themes/theme-gray.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotvhs/shine-unofficial/HEAD/themes/theme-gray.scss -------------------------------------------------------------------------------- /themes/theme-material.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotvhs/shine-unofficial/HEAD/themes/theme-material.css -------------------------------------------------------------------------------- /themes/theme-material.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotvhs/shine-unofficial/HEAD/themes/theme-material.scss -------------------------------------------------------------------------------- /themes/theme-modernwhite.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotvhs/shine-unofficial/HEAD/themes/theme-modernwhite.css -------------------------------------------------------------------------------- /themes/theme-violet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotvhs/shine-unofficial/HEAD/themes/theme-violet.css -------------------------------------------------------------------------------- /themes/theme-violet.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotvhs/shine-unofficial/HEAD/themes/theme-violet.scss --------------------------------------------------------------------------------