├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── custom.md │ └── feature_request.md ├── .gitignore ├── LICENSE ├── README.md ├── docs └── README.md ├── extension.zip ├── fonts ├── L0x5DF4xlVMF-BfR8bXMIjhEq3-OXg.woff2 ├── L0x5DF4xlVMF-BfR8bXMIjhFq3-OXg.woff2 ├── L0x5DF4xlVMF-BfR8bXMIjhGq3-OXg.woff2 ├── L0x5DF4xlVMF-BfR8bXMIjhHq3-OXg.woff2 ├── L0x5DF4xlVMF-BfR8bXMIjhIq3-OXg.woff2 ├── L0x5DF4xlVMF-BfR8bXMIjhLq38.woff2 ├── L0x5DF4xlVMF-BfR8bXMIjhPq3-OXg.woff2 └── font.css ├── img ├── chrome-icon.png ├── flyy.gif ├── home.png ├── icon.png └── logo.png ├── manifest.json ├── newtab.html ├── popup └── popup.html ├── src ├── app.css ├── app.js └── quotes.json └── tab-icon.png /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | patreon: bolajiayodeji 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiAyodeji/inspireNuggets/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiAyodeji/inspireNuggets/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiAyodeji/inspireNuggets/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiAyodeji/inspireNuggets/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiAyodeji/inspireNuggets/HEAD/README.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiAyodeji/inspireNuggets/HEAD/docs/README.md -------------------------------------------------------------------------------- /extension.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiAyodeji/inspireNuggets/HEAD/extension.zip -------------------------------------------------------------------------------- /fonts/L0x5DF4xlVMF-BfR8bXMIjhEq3-OXg.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiAyodeji/inspireNuggets/HEAD/fonts/L0x5DF4xlVMF-BfR8bXMIjhEq3-OXg.woff2 -------------------------------------------------------------------------------- /fonts/L0x5DF4xlVMF-BfR8bXMIjhFq3-OXg.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiAyodeji/inspireNuggets/HEAD/fonts/L0x5DF4xlVMF-BfR8bXMIjhFq3-OXg.woff2 -------------------------------------------------------------------------------- /fonts/L0x5DF4xlVMF-BfR8bXMIjhGq3-OXg.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiAyodeji/inspireNuggets/HEAD/fonts/L0x5DF4xlVMF-BfR8bXMIjhGq3-OXg.woff2 -------------------------------------------------------------------------------- /fonts/L0x5DF4xlVMF-BfR8bXMIjhHq3-OXg.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiAyodeji/inspireNuggets/HEAD/fonts/L0x5DF4xlVMF-BfR8bXMIjhHq3-OXg.woff2 -------------------------------------------------------------------------------- /fonts/L0x5DF4xlVMF-BfR8bXMIjhIq3-OXg.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiAyodeji/inspireNuggets/HEAD/fonts/L0x5DF4xlVMF-BfR8bXMIjhIq3-OXg.woff2 -------------------------------------------------------------------------------- /fonts/L0x5DF4xlVMF-BfR8bXMIjhLq38.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiAyodeji/inspireNuggets/HEAD/fonts/L0x5DF4xlVMF-BfR8bXMIjhLq38.woff2 -------------------------------------------------------------------------------- /fonts/L0x5DF4xlVMF-BfR8bXMIjhPq3-OXg.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiAyodeji/inspireNuggets/HEAD/fonts/L0x5DF4xlVMF-BfR8bXMIjhPq3-OXg.woff2 -------------------------------------------------------------------------------- /fonts/font.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiAyodeji/inspireNuggets/HEAD/fonts/font.css -------------------------------------------------------------------------------- /img/chrome-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiAyodeji/inspireNuggets/HEAD/img/chrome-icon.png -------------------------------------------------------------------------------- /img/flyy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiAyodeji/inspireNuggets/HEAD/img/flyy.gif -------------------------------------------------------------------------------- /img/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiAyodeji/inspireNuggets/HEAD/img/home.png -------------------------------------------------------------------------------- /img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiAyodeji/inspireNuggets/HEAD/img/icon.png -------------------------------------------------------------------------------- /img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiAyodeji/inspireNuggets/HEAD/img/logo.png -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiAyodeji/inspireNuggets/HEAD/manifest.json -------------------------------------------------------------------------------- /newtab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiAyodeji/inspireNuggets/HEAD/newtab.html -------------------------------------------------------------------------------- /popup/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiAyodeji/inspireNuggets/HEAD/popup/popup.html -------------------------------------------------------------------------------- /src/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiAyodeji/inspireNuggets/HEAD/src/app.css -------------------------------------------------------------------------------- /src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiAyodeji/inspireNuggets/HEAD/src/app.js -------------------------------------------------------------------------------- /src/quotes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiAyodeji/inspireNuggets/HEAD/src/quotes.json -------------------------------------------------------------------------------- /tab-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiAyodeji/inspireNuggets/HEAD/tab-icon.png --------------------------------------------------------------------------------