Reading Glasses
Shows a more focused view of a webpage.
Cos'è Reading Glasses?
Reading Glasses è un'estensione di Chrome sviluppata da colin, e la sua funzione principale è "Shows a more focused view of a webpage.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Reading Glasses
Scarica i file di estensione Reading Glasses 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
Simple browser extension to generate a, hopefully, more readable and focused template. This is a general solution so unfortunately it does not solve the problem perfectly for all web content. Could also be useful for consolidating web text to be copy and pasted into a text file. Should also be helpful reducing clutter on certain websites if you don't run any adblock software. Informazioni di Base sull'Estensione
| Nome | |
| ID | jjncchdhgngceellihkchfojlmekodch |
| URL Ufficiale | https://chromewebstore.google.com/detail/reading-glasses/jjncchdhgngceellihkchfojlmekodch |
| Descrizione | Shows a more focused view of a webpage. |
| Dimensione del File | 7.1 KB |
| Conteggio Installazioni | 38 |
| Versione Corrente | 1.2 |
| Ultimo Aggiornamento | 2019-03-05 |
| Data di Pubblicazione | 2019-03-05 |
| Valutazione | 4.00/5 Totale 1 Valutazioni |
| Sviluppatore | colin |
| Tipo di Pagamento | free |
| Lingue Supportate | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Reading Glasses",
"description": "Shows a more focused view of a webpage.",
"version": "1.2",
"manifest_version": 2,
"browser_action": {
"default_title": "Reading Glasses",
"default_icon": {
"16": "images\/reading16.png",
"48": "images\/reading48.png",
"128": "images\/reading128.png"
}
},
"background": {
"persistent": false,
"scripts": [
"background.js"
]
},
"permissions": [
"activeTab"
],
"icons": {
"16": "images\/reading16.png",
"48": "images\/reading48.png",
"128": "images\/reading128.png"
},
"web_accessible_resources": [
"dialog.css"
]
} | |