diff --git a/content.js b/content.js new file mode 100644 index 0000000..e69de29 diff --git a/images/icon.png b/images/icon.png new file mode 100644 index 0000000..20c7444 Binary files /dev/null and b/images/icon.png differ diff --git a/manifest.json b/manifest.json new file mode 100644 index 0000000..8a7a8e1 --- /dev/null +++ b/manifest.json @@ -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" + } +} \ No newline at end of file diff --git a/popup.html b/popup.html new file mode 100644 index 0000000..55dafb3 --- /dev/null +++ b/popup.html @@ -0,0 +1,13 @@ + + + + Popup + + + +
+

Welcome to Mahesh Tweets

+
+ + + diff --git a/style.css b/style.css new file mode 100644 index 0000000..914687d --- /dev/null +++ b/style.css @@ -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; +} \ No newline at end of file