Improvements

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

Improvementsคืออะไร?

Improvements เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Dusan Halicky และคุณลักษณะหลักของมันคือ "Modify any website by adding small piece of JS. Remove ugly fonts, increase contrast, etc."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Improvements

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
    }
}