Improvements

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

Qu'est-ce que Improvements ?

Improvements est une extension Chrome développée par Dusan Halicky, et sa fonction principale est "Modify any website by adding small piece of JS. Remove ugly fonts, increase contrast, etc.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Improvements

Téléchargez les fichiers d'extension Improvements au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Improvements Improvements
ID hgepjkljpdmlhppinimgmfackfddmhim
URL Officiel https://chromewebstore.google.com/detail/improvements/hgepjkljpdmlhppinimgmfackfddmhim
Description Modify any website by adding small piece of JS. Remove ugly fonts, increase contrast, etc.
Taille du Fichier 95.56 KB
Nombre d'Installations 33
Version Actuelle 0.1.14
Dernière Mise à Jour 2018-08-09
Date de Publication 2018-08-09
Développeur Dusan Halicky
Email [email protected]
Type de Paiement free
URL de la Page de Politique de Confidentialité https://ghost.sk/privacy-policy.html
Langues Prises en Charge 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"
    }
}