Minimal New Page

Override the new tab page with a minimal clock

Apa itu Minimal New Page?

Minimal New Page adalah ekstensi Chrome yang dikembangkan oleh Manu, dan fitur utamanya adalah "Override the new tab page with a minimal clock".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Minimal New Page

Unduh file ekstensi Minimal New Page dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        I was looking for a minimal new tab extension.
Found none so I coded one myself.

This extension replaces your new tab with a dark page and a clock.
No options, no settings.

For feedbacks, ideas and insults -> [email protected]                    

Informasi Dasar Ekstensi

Nama Minimal New Page Minimal New Page
ID danoojfpckpaacgbaebfakjeepeenaop
URL Resmi https://chromewebstore.google.com/detail/minimal-new-page/danoojfpckpaacgbaebfakjeepeenaop
Deskripsi Override the new tab page with a minimal clock
Ukuran File 17.23 KB
Jumlah Instalasi 771
Versi Saat Ini 0.2
Terakhir Diperbarui 2017-08-01
Tanggal Publikasi 2017-07-31
Penilaian 4.89/5 Total 18 Penilaian
Pengembang Manu
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Minimal New Page",
    "description": "Override the new tab page with a minimal clock",
    "version": "0.2",
    "incognito": "split",
    "chrome_url_overrides": {
        "newtab": "blank.html"
    },
    "background": {
        "scripts": [
            "assets\/script.js"
        ],
        "styles": [
            "assets\/styles.css"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "assets\/icon.png"
    },
    "icons": {
        "16": "assets\/icon16.png",
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    },
    "content_security_policy": "script-src 'self'; default-src 'self'",
    "manifest_version": 2
}