From 2be9c7d5d244f0ab4ff55dbb03a7e1dfbc4b4c55 Mon Sep 17 00:00:00 2001 From: Pundreek Saurabh Srivastava Date: Sun, 6 Sep 2020 11:00:43 +0530 Subject: [PATCH 1/3] Update manifest.json --- hello/manifest.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hello/manifest.json b/hello/manifest.json index b9c3b74..e3b3e2f 100644 --- a/hello/manifest.json +++ b/hello/manifest.json @@ -4,10 +4,11 @@ "version":"1.0", "description": "List cookies in the active tab.", "browser_action":{ + "browser_style": true, "default_title": "List cookies in the active tab", "default_icon":"icon.png", "default_popup":"popup.html" }, "homepage_url": "https://github.com/pundreek-saurabh", "permissions": ["cookies","","tabs"] -} \ No newline at end of file +} From 3702b3f40eff3304df988b39b0344fd9209fc5d7 Mon Sep 17 00:00:00 2001 From: Pundreek Saurabh Srivastava Date: Sun, 6 Sep 2020 11:01:17 +0530 Subject: [PATCH 2/3] Update popup.html --- hello/popup.html | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/hello/popup.html b/hello/popup.html index 62b8a89..0e5654b 100644 --- a/hello/popup.html +++ b/hello/popup.html @@ -8,8 +8,20 @@ - + + + +
+
+
+
+ + + + + + From dcc254f1143a24421830d621ca7043e2e29c7cfe Mon Sep 17 00:00:00 2001 From: Pundreek Saurabh Srivastava Date: Sun, 6 Sep 2020 11:02:59 +0530 Subject: [PATCH 3/3] Update style.css --- hello/style.css | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/hello/style.css b/hello/style.css index 11e22c6..9befff5 100644 --- a/hello/style.css +++ b/hello/style.css @@ -1,7 +1,11 @@ - *{ - background: papayawhip; - } - h2{ - - color:orange; - } \ No newline at end of file +html, body { + width: 500px; + } + + .panel { + padding: 5px; + } + + li { + margin-bottom: 5px; + }