Improvements

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

Improvementsとは何ですか?

ImprovementsはDusan Halickyによって開発されたChromeの拡張機能で、その主な機能は「Modify any website by adding small piece of JS. Remove ugly fonts, increase contrast, etc.」です。

拡張機能のスクリーンショット

screenshot

Improvements拡張機能のCRXファイルをダウンロード

Improvements拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 Improvements Improvements
ID hgepjkljpdmlhppinimgmfackfddmhim
公式URL https://chromewebstore.google.com/detail/improvements/hgepjkljpdmlhppinimgmfackfddmhim
説明 Modify any website by adding small piece of JS. Remove ugly fonts, increase contrast, etc.
ファイルサイズ 95.56 KB
インストール数 33
現在のバージョン 0.1.14
最終更新日 2018-08-09
公開日 2018-08-09
開発者 Dusan Halicky
Eメール [email protected]
支払い方法 free
プライバシーポリシーページのURL https://ghost.sk/privacy-policy.html
対応言語 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"
    }
}