Mike's Got Style

An extension to greatly improve the look and feel of Mike Scott's CS 312 and CS 314 website

Apa itu Mike's Got Style?

Mike's Got Style adalah ekstensi Chrome yang dikembangkan oleh https://leviv.github.io, dan fitur utamanya adalah "An extension to greatly improve the look and feel of Mike Scott's CS 312 and CS 314 website".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Mike's Got Style

Unduh file ekstensi Mike's Got Style 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

                        An extension to greatly improve the look and feel of Mike Scott's CS 312 and CS 314 website                    

Informasi Dasar Ekstensi

Nama Mike's Got Style Mike's Got Style
ID bpfphblljclepkkgcemfhckcebchiled
URL Resmi https://chrome.google.com/webstore/detail/bpfphblljclepkkgcemfhckcebchiled
Deskripsi An extension to greatly improve the look and feel of Mike Scott's CS 312 and CS 314 website
Ukuran File 208 KB
Jumlah Instalasi 77
Versi Saat Ini 2.1
Terakhir Diperbarui 2018-01-15
Tanggal Publikasi 2018-01-15
Penilaian 5.00/5 Total 6 Penilaian
Pengembang https://leviv.github.io
Tipe Pembayaran free
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Mike's Got Style",
    "version": "2.1",
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "http:\/\/www.cs.utexas.edu\/~scottm\/*",
                "https:\/\/www.cs.utexas.edu\/~scottm\/*"
            ],
            "js": [
                "jquery.js",
                "ui.js",
                "main.js"
            ],
            "css": [
                ".\/assets\/css\/test.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "jquery.js",
            "ui.js",
            "main.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "activeTab",
        "storage"
    ]
}