{"id":20962348,"url":"https://github.com/napoii/napo_ii_start","last_synced_at":"2025-08-12T10:12:19.271Z","repository":{"id":149376383,"uuid":"504295142","full_name":"NapoII/Napo_II_Start","owner":"NapoII","description":"My Home Startseite","archived":false,"fork":false,"pushed_at":"2022-06-21T17:48:48.000Z","size":3461,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-13T07:13:12.842Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/NapoII.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-06-16T20:21:46.000Z","updated_at":"2022-06-21T17:48:52.000Z","dependencies_parsed_at":null,"dependency_job_id":"2d9e37aa-24be-4786-bbb8-fd5451c061d6","html_url":"https://github.com/NapoII/Napo_II_Start","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/NapoII/Napo_II_Start","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NapoII%2FNapo_II_Start","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NapoII%2FNapo_II_Start/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NapoII%2FNapo_II_Start/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NapoII%2FNapo_II_Start/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/NapoII","download_url":"https://codeload.github.com/NapoII/Napo_II_Start/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NapoII%2FNapo_II_Start/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270041313,"owners_count":24516815,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-12T02:00:09.011Z","response_time":80,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-19T02:26:18.650Z","updated_at":"2025-08-12T10:12:19.248Z","avatar_url":"https://github.com/NapoII.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# MinTab\n\n_A minimal, elegant, easy to configure startpage._\n\n![MinTab screenshot](screenshot.png)\n\n\n## Features\n\n- Themeable.\n- Easy to configure.\n- Time format can be set to 24 or 12 hours (24h is default).\n- New quotes everytime you open a new tab.\n- Full icons support from [Remix Icon](https://remixicon.com/).\n\n## Usage\n\n#### As Home Page:\n\n1. Fork this repo.\n2. Enable the Github Pages service `Settings \u003e GitHub Pages \u003e Source [master branch] \u003e Save`.\n3. Set it as Home Page:\n   - Click the menu button. and select `Options`. `Preferences`.\n   - Click the Home panel.\n   - Click the menu next to Homepage and new windows and choose to show custom URLs and add your `Github Pages link`\n\n#### As New Tab:\n\nYou can use different Add-ons/Extensions for it\n\n- If you use Firefox: [Custom New Tab Page](https://addons.mozilla.org/en-US/firefox/addon/custom-new-tab-page/?src=search)\n- If you use Chromium (Brave, Vivaldi, Chrome): [Custom New Tab URL](https://chrome.google.com/webstore/detail/custom-new-tab-url/mmjbdbjnoablegbkcklggeknkfcjkjia)\n\n\n## Customization\n\n### Links\n\nYou can change icons and list links in the `config.js` file. Just select an icon from [Remix Icon](https://remixicon.com/) or a name, and a link: \n\n```javascript\nconst ICONS = [\n  {\n    icon: \"ri-youtube-fill\",\n    link: \"https://www.youtube.com/\"\n  },\n  {\n    icon: \"ri-whatsapp-fill\",\n    link: \"https://web.whatsapp.com/\"\n  },\n  {\n    icon: \"ri-reddit-fill\",\n    link: \"https://www.reddit.com/\"\n  },\n  {\n    icon: \"ri-github-fill\",\n    link: \"https://www.github.com/\"\n  }\n]\n\nconst LIST_ITEMS = [\n  {\n    name: \"music\",\n    link: \"https://music.youtube.com\"\n  },\n  {\n    name: \"netflix\",\n    link: \"https://www.netflix.com/\"\n  },\n  {\n    name: \"r/unixporn\",\n    link: \"https://www.reddit.com/r/unixporn/\"\n  },\n  {\n    name: \"r/firefoxcss\",\n    link: \"https://www.reddit.com/r/firefoxcss/\"\n  },\n]\n```\n\nYou can copy this format and add as many links as you want.\n\n### Clock\n\nYou can set hour format for 24 or 12 hour clock in the `config.js` file. Just set `hour12` to `true` or `false`:\n\n```javascript\nconst CONFIG = {\n  hour12  : false\n}\n```\n\n\n### Theme\n\nYou can change colors, font and animation speed at the top of the `styles.css` file:\n\n```css\n:root {\n  --fgColor   : #ffffff; /* foreground color */\n  --bgColor   : #212121; /* background color */\n  --bgFilter  : rgba(0, 0, 0, 0.1); /* background image filter */\n  --font      : \"Roboto\"; /* custom font */\n\n  --animationSpeed  : 0.2s; /* speed for animations when hovering/resizing */\n}\n```\n\nAlso, you can change the background image by overwriting the `bg.jpg` file.\n\n\n## Thanks to\n\n- [imreyesjorge/root-startpage](https://github.com/imreyesjorge/root-startpage): A simple and clean startpage.\n- [migueravila/Bento](https://github.com/migueravila/Bento): Minimalist, elegant and simple startpage inspired by the Bento box!.\n- [teiem1](https://www.reddit.com/user/Teiem1/): [r/startpages](https://www.reddit.com/r/startpages/) moderator.\n- [ratabb](https://github.com/ratabb): for implementing a quotes api.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnapoii%2Fnapo_ii_start","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnapoii%2Fnapo_ii_start","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnapoii%2Fnapo_ii_start/lists"}