HTML New Tab

Design your own new tab page with HTML, CSS, and JavaScript!

What is HTML New Tab?

HTML New Tab is a Chrome extension developed by Josh Pullen, and its main feature is "Design your own new tab page with HTML, CSS, and JavaScript!".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download HTML New Tab Extension CRX File

Download HTML New Tab extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Are you a web developer looking to build a completely custom new tab page for Chrome? 

With HTML New Tab page, you can write HTML, CSS, and JavaScript code to create your own completely custom new tab page. Whenever you open a new tab, your custom page will appear.                    

Extension Basic Information

Name HTML New Tab HTML New Tab
ID ponjalfncfogplhjlmalcbbclbappnaf
Official URL https://chromewebstore.google.com/detail/html-new-tab/ponjalfncfogplhjlmalcbbclbappnaf
Description Design your own new tab page with HTML, CSS, and JavaScript!
File Size 175 KB
Installation Count 427
Current Version 1.1
Last Updated 2021-01-24
Publish Date 2020-12-22
Rating 4.91/5 Total 11 Ratings
Developer Josh Pullen
Email [email protected]
Payment Type free
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "HTML New Tab",
    "description": "Design your own new tab page with HTML, CSS, and JavaScript!",
    "author": "Josh Pullen",
    "version": "1.1",
    "icons": {
        "16": "images\/icon-16.png",
        "24": "images\/icon-24.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "permissions": [
        "storage"
    ],
    "chrome_url_overrides": {
        "newtab": "newtab.html"
    },
    "browser_action": {
        "default_icon": {
            "16": "images\/icon-16.png",
            "24": "images\/icon-24.png",
            "32": "images\/icon-32.png",
            "48": "images\/icon-48.png",
            "128": "images\/icon-128.png"
        }
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    }
}