Zen Reading
Provide a nice and clean reading experience for any web article.
Cos'è Zen Reading?
Zen Reading è un'estensione di Chrome sviluppata da https://www.nclsmitchell.com, e la sua funzione principale è "Provide a nice and clean reading experience for any web article.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Zen Reading
Scarica i file di estensione Zen Reading 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
New features coming soon.
Latest update:
- Adding the possibility to swtich on/off without page reload
- New active icon Informazioni di Base sull'Estensione
| Nome | |
| ID | jbijaekkhbdedopipdoepignpolobenj |
| URL Ufficiale | https://chromewebstore.google.com/detail/zen-reading/jbijaekkhbdedopipdoepignpolobenj |
| Descrizione | Provide a nice and clean reading experience for any web article. |
| Dimensione del File | 38.48 KB |
| Conteggio Installazioni | 25 |
| Versione Corrente | 1.1.6 |
| Ultimo Aggiornamento | 2015-10-29 |
| Data di Pubblicazione | 2015-10-29 |
| Valutazione | 2.00/5 Totale 2 Valutazioni |
| Sviluppatore | https://www.nclsmitchell.com |
| Tipo di Pagamento | free |
| Lingue Supportate | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Zen Reading",
"description": "Provide a nice and clean reading experience for any web article.",
"version": "1.1.6",
"browser_action": {
"default_icon": "icon-zen-reading.png",
"name": "Click to Zen Mode"
},
"background": {
"scripts": [
"zen-reading-background.js"
]
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"css": [
"zen-reading.css"
],
"js": [
"jquery.min.js"
]
}
],
"permissions": [
"activeTab"
]
} | |