A Fine Start - minimal new tab page

A minimal new tab page for Chrome that presents your favorite links as a clean, simple list.

Qu'est-ce que A Fine Start - minimal new tab page ?

A Fine Start - minimal new tab page est une extension Chrome développée par https://afinestart.me, et sa fonction principale est "A minimal new tab page for Chrome that presents your favorite links as a clean, simple list.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension A Fine Start - minimal new tab page

Téléchargez les fichiers d'extension A Fine Start - minimal new tab page au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        A Fine Start replaces Chrome's new tab page with a handy list of links, grouped and sorted how you like. Use it for free in your current browser, or get a Premium account and sync your bookmarks on all your browsers.

Includes a minimal, typographic design that stays out of your way and gets you where you want to go—quickly.

Features

- Minimal text links
- Groups
- Drag-and-drop sorting
- Group folding
- Dark mode
- Restore points
- Optional syncing account

Privacy Friendly

I care deeply about your privacy. A Fine Start operates with minimal personal information. By default, A Fine Start save your bookmarks directly in your browser.

If you choose to purchase a Premium subscription, A Fine Start collects your email and saves both your email and bookmarks on its servers for the sole purpose of providing you syncing across all your browsers and devices.

The permissions the browser extension asks for are needed solely to facilitate authentication for Premium users. They aren't used for any other purpose.

What little information A Fine Start collects will never be given or sold to a third party.                    

Informations de Base sur l'Extension

Nom A Fine Start - minimal new tab page A Fine Start - minimal new tab page
ID kcgjmjiklcchbhljelchjdpoooccmhcn
URL Officiel https://chromewebstore.google.com/detail/a-fine-start-minimal-new/kcgjmjiklcchbhljelchjdpoooccmhcn
Description A minimal new tab page for Chrome that presents your favorite links as a clean, simple list.
Taille du Fichier 149 KB
Nombre d'Installations 892
Version Actuelle 2.4.1
Dernière Mise à Jour 2023-08-06
Date de Publication 2020-04-12
Évaluation 5.00/5 Total 12 Évaluations
Développeur https://afinestart.me
Email [email protected]
Type de Paiement in_app
Site Web de l'Extension https://afinestart.me/
URL de la Page d'Aide https://afinestart.me/help
URL de la Page de Politique de Confidentialité https://afinestart.me/privacy-policy
Langues Prises en Charge en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "A Fine Start - minimal new tab page",
    "short_name": "A Fine Start",
    "version": "2.4.1",
    "author": "Blake Watson",
    "description": "A minimal new tab page for Chrome that presents your favorite links as a clean, simple list.",
    "icons": {
        "16": "assets\/images\/16.png",
        "32": "assets\/images\/32.png",
        "128": "assets\/images\/128.png"
    },
    "action": {
        "browser_style": true,
        "default_title": "Add current page to A Fine Start",
        "default_icon": {
            "16": "assets\/images\/16.png",
            "32": "assets\/images\/32.png",
            "128": "assets\/images\/128.png"
        },
        "default_popup": "action\/popup.html"
    },
    "commands": {
        "search": {
            "suggested_key": {
                "default": "Ctrl+Shift+K"
            },
            "description": "Search in A Fine Start"
        }
    },
    "omnibox": {
        "keyword": "afs"
    },
    "chrome_url_overrides": {
        "newtab": "bookmarks\/index.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/afinestart.me\/*"
            ],
            "js": [
                "assets\/js\/content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "service_worker": "assets\/js\/background.js",
        "type": "module"
    },
    "externally_connectable": {
        "matches": [
            "https:\/\/afinestart.me\/*"
        ]
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "host_permissions": [
        "https:\/\/afinestart.me\/*"
    ]
}