eduarddit

help Ed remember which link on reddit got him here
git clone https://wehaveforgeathome.hates.computer/eduarddit.git
Log | Files | Refs | LICENSE

commit 5b18bc2136101e8101f7af15ecfe171943ad2b0c
parent 8fc0a889b7b175c5f7aedfdbd6b583fc52a5d870
Author: Ryan Wolf <rwolf@borderstylo.com>
Date:   Mon,  4 Apr 2011 14:57:57 -0700

fixed #1 browser action column too thin

Diffstat:
Mpopup.html | 19+++++++++++++++++++
1 file changed, 19 insertions(+), 0 deletions(-)

diff --git a/popup.html b/popup.html @@ -1,5 +1,22 @@ +<html> + <style> + body { + width: 500px; + font-size: 16px; + } + ul { + margin: 20px; + padding: 0; + } + li { + margin-bottom: 10px; + } + </style> +<body> ... <script> + document.body.style = 'width: 84em'; + var getPageUrl = function (callback) { chrome.tabs.getSelected(null, function (tab) { callback(tab.url); }); }; @@ -42,3 +59,5 @@ }); }); </script> +</body> +</html>