Skip to content

Commit

Permalink
Initial setup
Browse files Browse the repository at this point in the history
  • Loading branch information
nitro56565 committed Apr 2, 2024
1 parent ed10027 commit 104308a
Show file tree
Hide file tree
Showing 5 changed files with 47 additions and 0 deletions.
Empty file added content.js
Empty file.
Binary file added images/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
22 changes: 22 additions & 0 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"manifest_version": 3,
"name": "Mahesh Tweets",
"version": "1.0",
"permissions": [
"activeTab"
],
"content_scripts": [
{
"js": ["content.js"]
}
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"128": "/images/icon.png"
}
},
"icons": {
"128": "/images/icon.png"
}
}
13 changes: 13 additions & 0 deletions popup.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!DOCTYPE html>
<html>
<head>
<title>Popup</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div>
<h1>Welcome to Mahesh Tweets</h1>
</div>
<script src="popup.js"></script>
</body>
</html>
12 changes: 12 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
h1{
background-color: aqua;
padding: 1rem;
text-align: center;
}
div{
display: flex;
justify-content: center;
align-items: center;
width: 250px;
height: 300px;
}

0 comments on commit 104308a

Please sign in to comment.