Skip to content

Instantly share code, notes, and snippets.

@coding-youtuber
Created April 9, 2022 10:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save coding-youtuber/d1908f72d75ed7407af300592acdd1aa to your computer and use it in GitHub Desktop.
Save coding-youtuber/d1908f72d75ed7407af300592acdd1aa to your computer and use it in GitHub Desktop.
【HTML入門】舐達麻Chrome拡張の作り方
<!DOCTYPE html>
<html>
<style>
* {
margin: 0;
padding: 0;
}
body {
background: #000;
}
.viewer {
display: flex;
justify-content: center;
align-items: center;
width: 100vw;
height: 100vh;
}
</style>
<head>
<meta charset="UTF-8">
<title>Namedaruma</title>
</head>
<body>
<div class="viewer">
<img src="img1.png">
</div>
</body>
</html>
{
"name": "Namedaruma",
"description": "show namedaruma image",
"version": "1.0",
"chrome_url_overrides": {
"newtab": "index.html"
},
"manifest_version": 3
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment