Mike's Got Style

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

Was ist Mike's Got Style?

Mike's Got Style ist eine Chrome-Erweiterung, die von https://leviv.github.io entwickelt wurde, und ihr Hauptmerkmal ist "An extension to greatly improve the look and feel of Mike Scott's CS 312 and CS 314 website".

Erweiterungsscreenshots

screenshot

Mike's Got Style-Erweiterungs-CRX-Datei herunterladen

Laden Sie Mike's Got Style-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name Mike's Got Style Mike's Got Style
ID bpfphblljclepkkgcemfhckcebchiled
Offizielle URL https://chrome.google.com/webstore/detail/bpfphblljclepkkgcemfhckcebchiled
Beschreibung An extension to greatly improve the look and feel of Mike Scott's CS 312 and CS 314 website
Dateigröße 208 KB
Installationsanzahl 77
Aktuelle Version 2.1
Letztes Update 2018-01-15
Veröffentlichungsdatum 2018-01-15
Bewertung 5.00/5 Insgesamt 6 Bewertungen
Entwickler https://leviv.github.io
Zahlungsart free
Unterstützte Sprachen 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"
    ]
}