Mike's Got Style

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

Wat is Mike's Got Style?

Mike's Got Style is een Chrome-extensie ontwikkeld door https://leviv.github.io, en de belangrijkste functie is "An extension to greatly improve the look and feel of Mike Scott's CS 312 and CS 314 website".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Mike's Got Style

Download Mike's Got Style-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam Mike's Got Style Mike's Got Style
ID bpfphblljclepkkgcemfhckcebchiled
Officiële URL https://chrome.google.com/webstore/detail/bpfphblljclepkkgcemfhckcebchiled
Beschrijving An extension to greatly improve the look and feel of Mike Scott's CS 312 and CS 314 website
Bestandsgrootte 208 KB
Aantal Installaties 77
Huidige Versie 2.1
Laatst Bijgewerkt 2018-01-15
Publicatiedatum 2018-01-15
Beoordeling 5.00/5 Totaal 6 Beoordelingen
Ontwikkelaar https://leviv.github.io
Betalingswijze free
Ondersteunde Talen 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"
    ]
}