Optimize Legibility
Inserts CSS to optimize page text.
What is Optimize Legibility?
Optimize Legibility is a Chrome extension developed by John Michel, and its main feature is "Inserts CSS to optimize page text.".
Extension Screenshots
Download Optimize Legibility Extension CRX File
Download Optimize Legibility extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This extension automatically turns on text-rendering: optimizeLegibility; for any pages visited. For more examples of how this will enhance your browsing experience, please visit: http://www.aestheticallyloyal.com/public/optimize-legibility/ If you are having issues with how this makes text look once installed, please visit this link and star it so that the Chromium authors know that users want it fixed up: http://code.google.com/p/chromium/issues/detail?id=53249
Extension Basic Information
Name | Optimize Legibility |
ID | deglagpfendnbepmjmfmghphlcdlogdl |
Official URL | https://chromewebstore.google.com/detail/optimize-legibility/deglagpfendnbepmjmfmghphlcdlogdl |
Description | Inserts CSS to optimize page text. |
File Size | 6.84 KB |
Installation Count | 332 |
Current Version | 2.0.0 |
Last Updated | 2012-10-19 |
Publish Date | 2012-10-19 |
Rating | 3.67/5 Total 12 Ratings |
Developer | John Michel |
Payment Type | free |
Extension Website | http://github.com/johnmichel/Optimize-Legibility-for-Chrome |
Help Page URL | http://github.com/johnmichel/Optimize-Legibility-for-Chrome/issues |
Supported Languages | en |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "name": "Optimize Legibility", "version": "2.0.0", "manifest_version": 2, "description": "Inserts CSS to optimize page text.", "icons": { "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [ "optimize_legibility.css" ], "run_at": "document_end" } ] } |