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
官方網址 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
電子郵箱 [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"
    }
}