Improvements

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

Cos'è Improvements?

Improvements è un'estensione di Chrome sviluppata da Dusan Halicky, e la sua funzione principale è "Modify any website by adding small piece of JS. Remove ugly fonts, increase contrast, etc.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Improvements

Scarica i file di estensione Improvements in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Improvements Improvements
ID hgepjkljpdmlhppinimgmfackfddmhim
URL Ufficiale https://chromewebstore.google.com/detail/improvements/hgepjkljpdmlhppinimgmfackfddmhim
Descrizione Modify any website by adding small piece of JS. Remove ugly fonts, increase contrast, etc.
Dimensione del File 95.56 KB
Conteggio Installazioni 33
Versione Corrente 0.1.14
Ultimo Aggiornamento 2018-08-09
Data di Pubblicazione 2018-08-09
Sviluppatore Dusan Halicky
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy https://ghost.sk/privacy-policy.html
Lingue Supportate 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"
    }
}