HTML New Tab
Design your own new tab page with HTML, CSS, and JavaScript!
Wat is HTML New Tab?
HTML New Tab is een Chrome-extensie ontwikkeld door Josh Pullen, en de belangrijkste functie is "Design your own new tab page with HTML, CSS, and JavaScript!".
Extensie Screenshots
Download het CRX-bestand van de extensie HTML New Tab
Download HTML New Tab-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | HTML New Tab |
ID | ponjalfncfogplhjlmalcbbclbappnaf |
Officiële URL | https://chromewebstore.google.com/detail/html-new-tab/ponjalfncfogplhjlmalcbbclbappnaf |
Beschrijving | Design your own new tab page with HTML, CSS, and JavaScript! |
Bestandsgrootte | 175 KB |
Aantal Installaties | 427 |
Huidige Versie | 1.1 |
Laatst Bijgewerkt | 2021-01-24 |
Publicatiedatum | 2020-12-22 |
Beoordeling | 4.91/5 Totaal 11 Beoordelingen |
Ontwikkelaar | Josh Pullen |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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 } } |