Improvements

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

Wat is Improvements?

Improvements is een Chrome-extensie ontwikkeld door Dusan Halicky, en de belangrijkste functie is "Modify any website by adding small piece of JS. Remove ugly fonts, increase contrast, etc.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Improvements

Download Improvements-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Improvements Improvements
ID hgepjkljpdmlhppinimgmfackfddmhim
Officiële URL https://chromewebstore.google.com/detail/improvements/hgepjkljpdmlhppinimgmfackfddmhim
Beschrijving Modify any website by adding small piece of JS. Remove ugly fonts, increase contrast, etc.
Bestandsgrootte 95.56 KB
Aantal Installaties 33
Huidige Versie 0.1.14
Laatst Bijgewerkt 2018-08-09
Publicatiedatum 2018-08-09
Ontwikkelaar Dusan Halicky
E-mail [email protected]
Betalingswijze free
URL van de Privacybeleid Pagina https://ghost.sk/privacy-policy.html
Ondersteunde Talen 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"
    }
}