The Old Reader Dark
Dark theme for The Old Reader.
Co to jest The Old Reader Dark?
The Old Reader Dark to rozszerzenie Chrome opracowane przez laedit, a jego główną funkcją jest „Dark theme for The Old Reader.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia The Old Reader Dark
Pobierz pliki rozszerzeń The Old Reader Dark w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
A dark theme for The Old Reader.
Podstawowe informacje o rozszerzeniu
Nazwa | The Old Reader Dark |
ID | fpjjphhhciifpfhapopmdfppmhkepmnl |
Oficjalny URL | https://chromewebstore.google.com/detail/the-old-reader-dark/fpjjphhhciifpfhapopmdfppmhkepmnl |
Opis | Dark theme for The Old Reader. |
Rozmiar pliku | 17.6 KB |
Liczba instalacji | 20 |
Aktualna Wersja | 0.4 |
Ostatnia Aktualizacja | 2019-10-05 |
Data Publikacji | 2019-10-04 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | laedit |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/laedit/the-old-reader-dark |
Adres URL Strony Pomocy | https://github.com/laedit/the-old-reader-dark/issues |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "The Old Reader Dark", "short_name": "the-old-reader-dark", "version": "0.4", "description": "Dark theme for The Old Reader.", "homepage_url": "https:\/\/github.com\/laedit\/the-old-reader-dark", "permissions": [ "*:\/\/theoldreader.com\/*", "storage" ], "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "run_at": "document_start", "matches": [ "*:\/\/theoldreader.com\/*" ], "css": [ "content_scripts\/dark-theme.css" ], "js": [ "content_scripts\/inject-css.js" ] } ], "icons": { "64": "icons\/icon.png", "128": "icons\/icon-128.png" }, "options_ui": { "page": "options.html", "chrome_style": true } } |