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 +} 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 @@ - + + + +
+
+
+
+ + + + + + 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; + }