Minimal New Page

Override the new tab page with a minimal clock

Minimal New Pageとは何ですか?

Minimal New PageはManuによって開発されたChromeの拡張機能で、その主な機能は「Override the new tab page with a minimal clock」です。

拡張機能のスクリーンショット

screenshot

Minimal New Page拡張機能のCRXファイルをダウンロード

Minimal New Page拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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]                    

拡張機能の基本情報

名前 Minimal New Page Minimal New Page
ID danoojfpckpaacgbaebfakjeepeenaop
公式URL https://chromewebstore.google.com/detail/minimal-new-page/danoojfpckpaacgbaebfakjeepeenaop
説明 Override the new tab page with a minimal clock
ファイルサイズ 17.23 KB
インストール数 771
現在のバージョン 0.2
最終更新日 2017-08-01
公開日 2017-07-31
評価 4.89/5 合計 18 レビュー
開発者 Manu
Eメール [email protected]
支払い方法 free
対応言語 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
}