Improvements

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

Apa itu Improvements?

Improvements adalah ekstensi Chrome yang dikembangkan oleh Dusan Halicky, dan fitur utamanya adalah "Modify any website by adding small piece of JS. Remove ugly fonts, increase contrast, etc.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Improvements

Unduh file ekstensi Improvements dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Improvements Improvements
ID hgepjkljpdmlhppinimgmfackfddmhim
URL Resmi https://chromewebstore.google.com/detail/improvements/hgepjkljpdmlhppinimgmfackfddmhim
Deskripsi Modify any website by adding small piece of JS. Remove ugly fonts, increase contrast, etc.
Ukuran File 95.56 KB
Jumlah Instalasi 33
Versi Saat Ini 0.1.14
Terakhir Diperbarui 2018-08-09
Tanggal Publikasi 2018-08-09
Pengembang Dusan Halicky
Email [email protected]
Tipe Pembayaran free
URL Halaman Kebijakan Privasi https://ghost.sk/privacy-policy.html
Bahasa yang Didukung 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"
    }
}