Stylo

Allows you to apply and persist custom CSS to any web page.

Styloคืออะไร?

Stylo เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Andrew Hook และคุณลักษณะหลักของมันคือ "Allows you to apply and persist custom CSS to any web page."

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

screenshot

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

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

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

                        Allows you to apply and persist custom CSS to any web page.                    

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

ชื่อ Stylo Stylo
ID fpoplbeolegkjepcmgakknapmpdpcimb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/stylo/fpoplbeolegkjepcmgakknapmpdpcimb
คำอธิบาย Allows you to apply and persist custom CSS to any web page.
ขนาดไฟล์ 15.49 KB
จำนวนการติดตั้ง 20
เวอร์ชันปัจจุบัน 2.0
อัปเดตครั้งล่าสุด 2019-05-10
วันที่เผยแพร่ 2019-05-10
ผู้พัฒนา Andrew Hook
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Stylo",
    "version": "2.0",
    "description": "Allows you to apply and persist custom CSS to any web page.",
    "manifest_version": 2,
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/icon16.png",
            "32": "images\/icon32.png",
            "48": "images\/icon48.png"
        }
    },
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*"
            ],
            "css": [
                "gmail.css"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/mail.google.com\/*; object-src 'self'"
}