Improvements

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

Improvements là gì?

Improvements là một tiện ích mở rộng Chrome được phát triển bởi Dusan Halicky, và tính năng chính của nó là "Modify any website by adding small piece of JS. Remove ugly fonts, increase contrast, etc.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Improvements

Tải xuống các tệp mở rộng Improvements dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Improvements Improvements
ID hgepjkljpdmlhppinimgmfackfddmhim
URL Chính Thức https://chromewebstore.google.com/detail/improvements/hgepjkljpdmlhppinimgmfackfddmhim
Mô tả Modify any website by adding small piece of JS. Remove ugly fonts, increase contrast, etc.
Kích Thước Tệp 95.56 KB
Số Lần Cài Đặt 33
Phiên Bản Hiện Tại 0.1.14
Cập Nhật Lần Cuối 2018-08-09
Ngày Phát Hành 2018-08-09
Nhà Phát Triển Dusan Halicky
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://ghost.sk/privacy-policy.html
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}