Improvements

Modify any website by adding small piece of JS. Remove ugly fonts, increase contrast, etc.

O que é Improvements?

Improvements é uma extensão do Chrome desenvolvida por Dusan Halicky, e sua principal característica é "Modify any website by adding small piece of JS. Remove ugly fonts, increase contrast, etc.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Improvements

Baixe arquivos de extensão Improvements no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Improvements Improvements
ID hgepjkljpdmlhppinimgmfackfddmhim
URL Oficial https://chromewebstore.google.com/detail/improvements/hgepjkljpdmlhppinimgmfackfddmhim
Descrição Modify any website by adding small piece of JS. Remove ugly fonts, increase contrast, etc.
Tamanho do Arquivo 95.56 KB
Contagem de Instalações 33
Versão Atual 0.1.14
Última Atualização 2018-08-09
Data de Publicação 2018-08-09
Desenvolvedor Dusan Halicky
Email [email protected]
Tipo de Pagamento free
URL da Página de Política de Privacidade https://ghost.sk/privacy-policy.html
Idiomas Suportados 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"
    }
}