Reading Glasses
Shows a more focused view of a webpage.
Vad är Reading Glasses?
Reading Glasses är en Chrome-tillägg utvecklad av colin, och dess huvudfunktion är "Shows a more focused view of a webpage.".
Tilläggsskärmbilder
Ladda ner Reading Glasses-förlängningens CRX-fil
Ladda ner Reading Glasses-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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. Grundläggande Information om Tillägg
| Namn | |
| ID | jjncchdhgngceellihkchfojlmekodch |
| Officiell webbadress | https://chromewebstore.google.com/detail/reading-glasses/jjncchdhgngceellihkchfojlmekodch |
| Beskrivning | Shows a more focused view of a webpage. |
| Filstorlek | 7.1 KB |
| Antal Installationer | 38 |
| Aktuell Version | 1.2 |
| Senast Uppdaterad | 2019-03-05 |
| Publiceringsdatum | 2019-03-05 |
| Betyg | 4.00/5 Totalt 1 Betyg |
| Utvecklare | colin |
| Betalningssätt | free |
| Stödda Språk | 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"
]
} | |