Clear Read
Immersive reading mode
Co to jest Clear Read?
Clear Read to rozszerzenie Chrome opracowane przez chris.scott, a jego główną funkcją jest „Immersive reading mode”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Clear Read
Pobierz pliki rozszerzeń Clear Read 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
This extension adds a button to Chrome to toggle a distraction-free reading mode. When enabled, the plugin attempts to strip out just the core content and displays it in legible text on a plain white background.
Podstawowe informacje o rozszerzeniu
Nazwa | Clear Read |
ID | kpipjgdapccmpkgipfikeajoopjbcgam |
Oficjalny URL | https://chromewebstore.google.com/detail/clear-read/kpipjgdapccmpkgipfikeajoopjbcgam |
Opis | Immersive reading mode |
Rozmiar pliku | 6.59 KB |
Liczba instalacji | 26,131 |
Aktualna Wersja | 0.0.10 |
Ostatnia Aktualizacja | 2016-01-14 |
Data Publikacji | 2016-01-14 |
Ocena | 3.95/5 Łącznie 41 Oceny |
Deweloper | chris.scott |
Typ Płatności | free |
Obsługiwane Języki | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Clear Read", "version": "0.0.10", "manifest_version": 2, "description": "Immersive reading mode", "browser_action": { "default_icon": { "19": "images\/icon19.png", "38": "images\/icon38.png" }, "default_title": "Clear Read" }, "permissions": [ "activeTab" ], "background": { "scripts": [ "init.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "css": [ "clear-read.css" ], "js": [ "clear-read.js" ] } ] } |