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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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
}