diff --git a/README.md b/README.md index d67b620..5d9baac 100644 --- a/README.md +++ b/README.md @@ -33,6 +33,7 @@ Hit back and try another one! * Version 7 * Replaced Google with Cachew (Cache-view) + * Added sexy dark mode on popup * Version 6.2.1 * Specify openerTabId for opened tabs * Version 6.2 diff --git a/icons/cacheicons/isup.png b/icons/cacheicons/isup.png index 4da7410..ac6f3b4 100644 Binary files a/icons/cacheicons/isup.png and b/icons/cacheicons/isup.png differ diff --git a/icons/cacheicons/waybackmachine.png b/icons/cacheicons/waybackmachine.png index 81cc25b..689f73d 100644 Binary files a/icons/cacheicons/waybackmachine.png and b/icons/cacheicons/waybackmachine.png differ diff --git a/manifest.json b/manifest.json index 326ae6b..74f2afb 100644 --- a/manifest.json +++ b/manifest.json @@ -3,7 +3,7 @@ "name": "__MSG_extensionName__", "short_name": "__MSG_extensionName__", "description": "__MSG_extensionDescription__", - "version": "6.2.1", + "version": "7", "default_locale": "en", "homepage_url": "https://github.com/Albirew/resurrect-pages", diff --git a/popup.htm b/popup.htm index a74443a..7c8b1ee 100644 --- a/popup.htm +++ b/popup.htm @@ -20,6 +20,12 @@ img { vertical-align: bottom; height: 16px; } +@media (prefers-color-scheme: dark){ + body { + filter: hue-rotate(180deg) invert(1); + background-color:#102; + } +}