HTML New Tab

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

Vad är HTML New Tab?

HTML New Tab är en Chrome-tillägg utvecklad av Josh Pullen, och dess huvudfunktion är "Design your own new tab page with HTML, CSS, and JavaScript!".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

Ladda ner HTML New Tab-förlängningens CRX-fil

Ladda ner HTML New Tab-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn HTML New Tab HTML New Tab
ID ponjalfncfogplhjlmalcbbclbappnaf
Officiell webbadress https://chromewebstore.google.com/detail/html-new-tab/ponjalfncfogplhjlmalcbbclbappnaf
Beskrivning Design your own new tab page with HTML, CSS, and JavaScript!
Filstorlek 175 KB
Antal Installationer 427
Aktuell Version 1.1
Senast Uppdaterad 2021-01-24
Publiceringsdatum 2020-12-22
Betyg 4.91/5 Totalt 11 Betyg
Utvecklare Josh Pullen
E-post [email protected]
Betalningssätt free
Stödda Språk 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
    }
}