Mike's Got Style

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

Cos'è Mike's Got Style?

Mike's Got Style è un'estensione di Chrome sviluppata da https://leviv.github.io, e la sua funzione principale è "An extension to greatly improve the look and feel of Mike Scott's CS 312 and CS 314 website".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Mike's Got Style

Scarica i file di estensione Mike's Got Style in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Mike's Got Style Mike's Got Style
ID bpfphblljclepkkgcemfhckcebchiled
URL Ufficiale https://chrome.google.com/webstore/detail/bpfphblljclepkkgcemfhckcebchiled
Descrizione An extension to greatly improve the look and feel of Mike Scott's CS 312 and CS 314 website
Dimensione del File 208 KB
Conteggio Installazioni 77
Versione Corrente 2.1
Ultimo Aggiornamento 2018-01-15
Data di Pubblicazione 2018-01-15
Valutazione 5.00/5 Totale 6 Valutazioni
Sviluppatore https://leviv.github.io
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}