AddCSS

This extension allows you to add your own custom website specific CSS style sheets.

AddCSSคืออะไร?

AddCSS เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://mkhsoft.eu และคุณลักษณะหลักของมันคือ "This extension allows you to add your own custom website specific CSS style sheets."

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

screenshot
screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย AddCSS ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        AddCSS is a neat extension that lets you add your own custom domain specific CSS code to web pages

Your custom code is even synchronised between your Chrome browsers in different machines.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ AddCSS AddCSS
ID ndddnaffbgingffgfneijoplfpeohabn
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/addcss/ndddnaffbgingffgfneijoplfpeohabn
คำอธิบาย This extension allows you to add your own custom website specific CSS style sheets.
ขนาดไฟล์ 676 KB
จำนวนการติดตั้ง 252
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2017-01-20
วันที่เผยแพร่ 2017-01-20
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา http://mkhsoft.eu
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "AddCSS",
    "description": "This extension allows you to add your own custom website specific CSS style sheets.",
    "version": "1.0",
    "browser_action": {
        "default_icon": "icon64.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon16.png",
        "64": "icon64.png",
        "128": "icon128.png",
        "256": "icon256.png"
    },
    "background": {
        "scripts": [
            "logic.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "tabs",
        "storage",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ]
}