Minimal New Page

Override the new tab page with a minimal clock

Minimal New Page क्या है?

Minimal New Page Manu द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Override the new tab page with a minimal clock"।

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

screenshot

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

crx प्रारूप में Minimal New Page एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
}