A Fine Start - minimal new tab page

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

A Fine Start - minimal new tab page क्या है?

A Fine Start - minimal new tab page https://afinestart.me द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A minimal new tab page for Chrome that presents your favorite links as a clean, simple list."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में A Fine Start - minimal new tab page एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम A Fine Start - minimal new tab page A Fine Start - minimal new tab page
ID kcgjmjiklcchbhljelchjdpoooccmhcn
आधिकारिक URL https://chromewebstore.google.com/detail/a-fine-start-minimal-new/kcgjmjiklcchbhljelchjdpoooccmhcn
विवरण A minimal new tab page for Chrome that presents your favorite links as a clean, simple list.
फ़ाइल का आकार 149 KB
स्थापना संख्या 892
वर्तमान संस्करण 2.4.1
अंतिम अपडेट 2023-08-06
प्रकाशन तिथि 2020-04-12
रेटिंग 5.00/5 कुल 12 रेटिंग्स
डेवलपर https://afinestart.me
ईमेल [email protected]
भुगतान के प्रकार in_app
एक्सटेंशन वेबसाइट https://afinestart.me/
सहायता पृष्ठ URL https://afinestart.me/help
गोपनीयता नीति पृष्ठ URL https://afinestart.me/privacy-policy
समर्थित भाषाएँ 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\/*"
    ]
}