Stylo

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

Apa itu Stylo?

Stylo adalah ekstensi Chrome yang dikembangkan oleh Andrew Hook, dan fitur utamanya adalah "Allows you to apply and persist custom CSS to any web page.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Stylo

Unduh file ekstensi Stylo dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Stylo Stylo
ID fpoplbeolegkjepcmgakknapmpdpcimb
URL Resmi https://chromewebstore.google.com/detail/stylo/fpoplbeolegkjepcmgakknapmpdpcimb
Deskripsi Allows you to apply and persist custom CSS to any web page.
Ukuran File 15.49 KB
Jumlah Instalasi 20
Versi Saat Ini 2.0
Terakhir Diperbarui 2019-05-10
Tanggal Publikasi 2019-05-10
Pengembang Andrew Hook
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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'"
}