The Old Reader Dark
Dark theme for The Old Reader.
Cos'è The Old Reader Dark?
The Old Reader Dark è un'estensione di Chrome sviluppata da laedit, e la sua funzione principale è "Dark theme for The Old Reader.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione The Old Reader Dark
Scarica i file di estensione The Old Reader Dark in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
A dark theme for The Old Reader.
Informazioni di Base sull'Estensione
Nome | The Old Reader Dark |
ID | fpjjphhhciifpfhapopmdfppmhkepmnl |
URL Ufficiale | https://chromewebstore.google.com/detail/the-old-reader-dark/fpjjphhhciifpfhapopmdfppmhkepmnl |
Descrizione | Dark theme for The Old Reader. |
Dimensione del File | 17.6 KB |
Conteggio Installazioni | 20 |
Versione Corrente | 0.4 |
Ultimo Aggiornamento | 2019-10-05 |
Data di Pubblicazione | 2019-10-04 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | laedit |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/laedit/the-old-reader-dark |
URL della Pagina di Aiuto | https://github.com/laedit/the-old-reader-dark/issues |
Lingue Supportate | 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 } } |