Improvements
Modify any website by adding small piece of JS. Remove ugly fonts, increase contrast, etc.
¿Qué es Improvements?
Improvements es una extensión de Chrome desarrollada por Dusan Halicky, y su función principal es "Modify any website by adding small piece of JS. Remove ugly fonts, increase contrast, etc.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Improvements
Descarga archivos de extensión Improvements en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
What is it? Improvements is chrome extension. It allows you to define JS code to be executed on sites you specify. It requires knowledge of JS, intended audience are programmers. How to use it? Let's say you want light gray background on www.google.sk. Open settings site, add "www.google.sk" to the "Page" input and type in this code: document.body.style.backgroundColor = 'silver'; Hit "Save" button and when you visit www.google.sk, the background will be light gray.
Información Básica de la Extensión
Nombre | Improvements |
ID | hgepjkljpdmlhppinimgmfackfddmhim |
URL Oficial | https://chromewebstore.google.com/detail/improvements/hgepjkljpdmlhppinimgmfackfddmhim |
Descripción | Modify any website by adding small piece of JS. Remove ugly fonts, increase contrast, etc. |
Tamaño del Archivo | 95.56 KB |
Cantidad de Instalaciones | 33 |
Versión Actual | 0.1.14 |
Última Actualización | 2018-08-09 |
Fecha de Publicación | 2018-08-09 |
Desarrollador | Dusan Halicky |
Correo electrónico | [email protected] |
Tipo de Pago | free |
URL de la Página de Política de Privacidad | https://ghost.sk/privacy-policy.html |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Improvements", "short_name": "Improvements", "description": "Modify any website by adding small piece of JS. Remove ugly fonts, increase contrast, etc.", "version": "0.1.14", "options_page": "settings.html", "minimum_chrome_version": "38", "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "tabs", "contextMenus", "storage" ], "background": { "scripts": [ "background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.js" ] } ], "browser_action": { "default_icon": "icon\/19.png" }, "icons": { "16": "icon\/16.png", "19": "icon\/19.png", "32": "icon\/32.png", "48": "icon\/48.png", "128": "icon\/128.png" } } |