Improvements

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

Co to jest Improvements?

Improvements to rozszerzenie Chrome opracowane przez Dusan Halicky, a jego główną funkcją jest „Modify any website by adding small piece of JS. Remove ugly fonts, increase contrast, etc.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Improvements

Pobierz pliki rozszerzeń Improvements w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Improvements Improvements
ID hgepjkljpdmlhppinimgmfackfddmhim
Oficjalny URL https://chromewebstore.google.com/detail/improvements/hgepjkljpdmlhppinimgmfackfddmhim
Opis Modify any website by adding small piece of JS. Remove ugly fonts, increase contrast, etc.
Rozmiar pliku 95.56 KB
Liczba instalacji 33
Aktualna Wersja 0.1.14
Ostatnia Aktualizacja 2018-08-09
Data Publikacji 2018-08-09
Deweloper Dusan Halicky
E-mail [email protected]
Typ Płatności free
Adres URL Strony Polityki Prywatności https://ghost.sk/privacy-policy.html
Obsługiwane Języki 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"
    }
}