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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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"
    }
}