Chrome newtab extension exemple
{ | |
"manifest_version": 2, | |
"name": "Chrome newtab exemple", | |
"version": "1.0.0", | |
"description": "Demonstrate what is needed to make a newtab chrome extension.", | |
"chrome_url_overrides" : { | |
"newtab": "newtab.html" | |
} | |
} |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<title>New tab</title> | |
<meta charset="utf-8"> | |
<link rel="stylesheet" href="main.css"> | |
</head> | |
<body> | |
<div class="my-newtab"> | |
Custom newtab ! | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This comment has been minimized.
If you don't know how to load this basic exemple into chrome, check the associated blog article :🙂
https://wimantis.ninja/how-to-make-a-newtab-chrome-extension/