AddCSS

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

Apa itu AddCSS?

AddCSS adalah ekstensi Chrome yang dikembangkan oleh http://mkhsoft.eu, dan fitur utamanya adalah "This extension allows you to add your own custom website specific CSS style sheets.".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi AddCSS

Unduh file ekstensi AddCSS 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

                        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.                    

Informasi Dasar Ekstensi

Nama AddCSS AddCSS
ID ndddnaffbgingffgfneijoplfpeohabn
URL Resmi https://chrome.google.com/webstore/detail/addcss/ndddnaffbgingffgfneijoplfpeohabn
Deskripsi This extension allows you to add your own custom website specific CSS style sheets.
Ukuran File 676 KB
Jumlah Instalasi 252
Versi Saat Ini 1.0
Terakhir Diperbarui 2017-01-20
Tanggal Publikasi 2017-01-20
Penilaian 5.00/5 Total 1 Penilaian
Pengembang http://mkhsoft.eu
Tipe Pembayaran free
Bahasa yang Didukung 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:\/\/*\/"
    ]
}