├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── favicon ├── icon128.png ├── icon16.png ├── icon48.png └── placeholder ├── fonts ├── IRANSansXNoEn-Regular.ttf ├── IranSans-Regular.ttf ├── Poppins-Regular.ttf └── placeholder ├── images ├── Loading.png └── placeholder ├── index.html ├── locales ├── README.md ├── az.js ├── bn.js ├── cs.js ├── de.js ├── en.js ├── es.js ├── fa.js ├── fr.js ├── hi.js ├── hu.js ├── idn.js ├── it.js ├── ja.js ├── ko.js ├── mr.js ├── np.js ├── placeholder ├── pt.js ├── ru.js ├── sl.js ├── tr.js ├── ur.js ├── uz.js ├── vi.js ├── zh.js └── zh_TW.js ├── manifest(firefox).json ├── manifest.json ├── privacy-policy.html ├── scripts ├── README.md ├── Sortable.min.js ├── ai-tools.js ├── alert-modal.js ├── background.js ├── backup-restore.js ├── bookmarks.js ├── browser-utils.js ├── clock.js ├── custom-text.js ├── google-apps.js ├── languages.js ├── menu-shortcut-page.js ├── placeholder ├── preload.js ├── quotes.js ├── save-load-states.js ├── script.js ├── search-suggestions.js ├── search.js ├── shortcuts.js ├── todo-list.js ├── voice-search.js ├── wallpaper.js └── weather.js ├── style.css └── svgs ├── andakar.svg ├── bing.svg ├── bookmarksSearch.svg ├── brave.svg ├── defaultWeather.svg ├── duck.svg ├── feels.svg ├── google.svg ├── grip-dots-vertical.svg ├── humidity.svg ├── location.svg ├── rounder.svg ├── searchIcon.svg ├── shortcuts_icons ├── adobe-firefly.svg ├── bard.svg ├── chatgpt.svg ├── email.svg ├── facebook.svg ├── feedback.svg ├── github-shortcut.svg ├── github.svg ├── instagram.svg ├── invalid-url.svg ├── offline.svg ├── placeholder ├── reddit.svg ├── telegram.svg ├── twitch.svg ├── twitter.svg ├── whatsApp.svg └── youtube.svg ├── starishShape.svg ├── theme.svg ├── tick.svg ├── todo-check-fill.svg ├── todo-check-stroke.svg ├── todo-pin-fill.svg ├── todo-pin-stroke.svg ├── x.svg └── youtube.svg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/README.md -------------------------------------------------------------------------------- /favicon/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/favicon/icon128.png -------------------------------------------------------------------------------- /favicon/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/favicon/icon16.png -------------------------------------------------------------------------------- /favicon/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/favicon/icon48.png -------------------------------------------------------------------------------- /favicon/placeholder: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fonts/IRANSansXNoEn-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/fonts/IRANSansXNoEn-Regular.ttf -------------------------------------------------------------------------------- /fonts/IranSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/fonts/IranSans-Regular.ttf -------------------------------------------------------------------------------- /fonts/Poppins-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/fonts/Poppins-Regular.ttf -------------------------------------------------------------------------------- /fonts/placeholder: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /images/Loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/images/Loading.png -------------------------------------------------------------------------------- /images/placeholder: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/index.html -------------------------------------------------------------------------------- /locales/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/locales/README.md -------------------------------------------------------------------------------- /locales/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/locales/az.js -------------------------------------------------------------------------------- /locales/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/locales/bn.js -------------------------------------------------------------------------------- /locales/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/locales/cs.js -------------------------------------------------------------------------------- /locales/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/locales/de.js -------------------------------------------------------------------------------- /locales/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/locales/en.js -------------------------------------------------------------------------------- /locales/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/locales/es.js -------------------------------------------------------------------------------- /locales/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/locales/fa.js -------------------------------------------------------------------------------- /locales/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/locales/fr.js -------------------------------------------------------------------------------- /locales/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/locales/hi.js -------------------------------------------------------------------------------- /locales/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/locales/hu.js -------------------------------------------------------------------------------- /locales/idn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/locales/idn.js -------------------------------------------------------------------------------- /locales/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/locales/it.js -------------------------------------------------------------------------------- /locales/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/locales/ja.js -------------------------------------------------------------------------------- /locales/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/locales/ko.js -------------------------------------------------------------------------------- /locales/mr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/locales/mr.js -------------------------------------------------------------------------------- /locales/np.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/locales/np.js -------------------------------------------------------------------------------- /locales/placeholder: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /locales/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/locales/pt.js -------------------------------------------------------------------------------- /locales/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/locales/ru.js -------------------------------------------------------------------------------- /locales/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/locales/sl.js -------------------------------------------------------------------------------- /locales/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/locales/tr.js -------------------------------------------------------------------------------- /locales/ur.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/locales/ur.js -------------------------------------------------------------------------------- /locales/uz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/locales/uz.js -------------------------------------------------------------------------------- /locales/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/locales/vi.js -------------------------------------------------------------------------------- /locales/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/locales/zh.js -------------------------------------------------------------------------------- /locales/zh_TW.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/locales/zh_TW.js -------------------------------------------------------------------------------- /manifest(firefox).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/manifest(firefox).json -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/manifest.json -------------------------------------------------------------------------------- /privacy-policy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/privacy-policy.html -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/Sortable.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/scripts/Sortable.min.js -------------------------------------------------------------------------------- /scripts/ai-tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/scripts/ai-tools.js -------------------------------------------------------------------------------- /scripts/alert-modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/scripts/alert-modal.js -------------------------------------------------------------------------------- /scripts/background.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /scripts/backup-restore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/scripts/backup-restore.js -------------------------------------------------------------------------------- /scripts/bookmarks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/scripts/bookmarks.js -------------------------------------------------------------------------------- /scripts/browser-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/scripts/browser-utils.js -------------------------------------------------------------------------------- /scripts/clock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/scripts/clock.js -------------------------------------------------------------------------------- /scripts/custom-text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/scripts/custom-text.js -------------------------------------------------------------------------------- /scripts/google-apps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/scripts/google-apps.js -------------------------------------------------------------------------------- /scripts/languages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/scripts/languages.js -------------------------------------------------------------------------------- /scripts/menu-shortcut-page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/scripts/menu-shortcut-page.js -------------------------------------------------------------------------------- /scripts/placeholder: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /scripts/preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/scripts/preload.js -------------------------------------------------------------------------------- /scripts/quotes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/scripts/quotes.js -------------------------------------------------------------------------------- /scripts/save-load-states.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/scripts/save-load-states.js -------------------------------------------------------------------------------- /scripts/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/scripts/script.js -------------------------------------------------------------------------------- /scripts/search-suggestions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/scripts/search-suggestions.js -------------------------------------------------------------------------------- /scripts/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/scripts/search.js -------------------------------------------------------------------------------- /scripts/shortcuts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/scripts/shortcuts.js -------------------------------------------------------------------------------- /scripts/todo-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/scripts/todo-list.js -------------------------------------------------------------------------------- /scripts/voice-search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/scripts/voice-search.js -------------------------------------------------------------------------------- /scripts/wallpaper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/scripts/wallpaper.js -------------------------------------------------------------------------------- /scripts/weather.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/scripts/weather.js -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/style.css -------------------------------------------------------------------------------- /svgs/andakar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/svgs/andakar.svg -------------------------------------------------------------------------------- /svgs/bing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/svgs/bing.svg -------------------------------------------------------------------------------- /svgs/bookmarksSearch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/svgs/bookmarksSearch.svg -------------------------------------------------------------------------------- /svgs/brave.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/svgs/brave.svg -------------------------------------------------------------------------------- /svgs/defaultWeather.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/svgs/defaultWeather.svg -------------------------------------------------------------------------------- /svgs/duck.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/svgs/duck.svg -------------------------------------------------------------------------------- /svgs/feels.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/svgs/feels.svg -------------------------------------------------------------------------------- /svgs/google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/svgs/google.svg -------------------------------------------------------------------------------- /svgs/grip-dots-vertical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/svgs/grip-dots-vertical.svg -------------------------------------------------------------------------------- /svgs/humidity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/svgs/humidity.svg -------------------------------------------------------------------------------- /svgs/location.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/svgs/location.svg -------------------------------------------------------------------------------- /svgs/rounder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/svgs/rounder.svg -------------------------------------------------------------------------------- /svgs/searchIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/svgs/searchIcon.svg -------------------------------------------------------------------------------- /svgs/shortcuts_icons/adobe-firefly.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/svgs/shortcuts_icons/adobe-firefly.svg -------------------------------------------------------------------------------- /svgs/shortcuts_icons/bard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/svgs/shortcuts_icons/bard.svg -------------------------------------------------------------------------------- /svgs/shortcuts_icons/chatgpt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/svgs/shortcuts_icons/chatgpt.svg -------------------------------------------------------------------------------- /svgs/shortcuts_icons/email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/svgs/shortcuts_icons/email.svg -------------------------------------------------------------------------------- /svgs/shortcuts_icons/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/svgs/shortcuts_icons/facebook.svg -------------------------------------------------------------------------------- /svgs/shortcuts_icons/feedback.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/svgs/shortcuts_icons/feedback.svg -------------------------------------------------------------------------------- /svgs/shortcuts_icons/github-shortcut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/svgs/shortcuts_icons/github-shortcut.svg -------------------------------------------------------------------------------- /svgs/shortcuts_icons/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/svgs/shortcuts_icons/github.svg -------------------------------------------------------------------------------- /svgs/shortcuts_icons/instagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/svgs/shortcuts_icons/instagram.svg -------------------------------------------------------------------------------- /svgs/shortcuts_icons/invalid-url.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/svgs/shortcuts_icons/invalid-url.svg -------------------------------------------------------------------------------- /svgs/shortcuts_icons/offline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/svgs/shortcuts_icons/offline.svg -------------------------------------------------------------------------------- /svgs/shortcuts_icons/placeholder: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /svgs/shortcuts_icons/reddit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/svgs/shortcuts_icons/reddit.svg -------------------------------------------------------------------------------- /svgs/shortcuts_icons/telegram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/svgs/shortcuts_icons/telegram.svg -------------------------------------------------------------------------------- /svgs/shortcuts_icons/twitch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/svgs/shortcuts_icons/twitch.svg -------------------------------------------------------------------------------- /svgs/shortcuts_icons/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/svgs/shortcuts_icons/twitter.svg -------------------------------------------------------------------------------- /svgs/shortcuts_icons/whatsApp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/svgs/shortcuts_icons/whatsApp.svg -------------------------------------------------------------------------------- /svgs/shortcuts_icons/youtube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/svgs/shortcuts_icons/youtube.svg -------------------------------------------------------------------------------- /svgs/starishShape.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/svgs/starishShape.svg -------------------------------------------------------------------------------- /svgs/theme.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/svgs/theme.svg -------------------------------------------------------------------------------- /svgs/tick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/svgs/tick.svg -------------------------------------------------------------------------------- /svgs/todo-check-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/svgs/todo-check-fill.svg -------------------------------------------------------------------------------- /svgs/todo-check-stroke.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/svgs/todo-check-stroke.svg -------------------------------------------------------------------------------- /svgs/todo-pin-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/svgs/todo-pin-fill.svg -------------------------------------------------------------------------------- /svgs/todo-pin-stroke.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/svgs/todo-pin-stroke.svg -------------------------------------------------------------------------------- /svgs/x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/svgs/x.svg -------------------------------------------------------------------------------- /svgs/youtube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhoisNeon/MaterialYouNewTab/HEAD/svgs/youtube.svg --------------------------------------------------------------------------------