Improvements

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

Vad är Improvements?

Improvements är en Chrome-tillägg utvecklad av Dusan Halicky, och dess huvudfunktion är "Modify any website by adding small piece of JS. Remove ugly fonts, increase contrast, etc.".

Tilläggsskärmbilder

screenshot

Ladda ner Improvements-förlängningens CRX-fil

Ladda ner Improvements-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Improvements Improvements
ID hgepjkljpdmlhppinimgmfackfddmhim
Officiell webbadress https://chromewebstore.google.com/detail/improvements/hgepjkljpdmlhppinimgmfackfddmhim
Beskrivning Modify any website by adding small piece of JS. Remove ugly fonts, increase contrast, etc.
Filstorlek 95.56 KB
Antal Installationer 33
Aktuell Version 0.1.14
Senast Uppdaterad 2018-08-09
Publiceringsdatum 2018-08-09
Utvecklare Dusan Halicky
E-post [email protected]
Betalningssätt free
URL till Sekretesspolicy Sidan https://ghost.sk/privacy-policy.html
Stödda Språk 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"
    }
}