Mike's Got Style

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

What is Mike's Got Style?

Mike's Got Style is a Chrome extension developed by https://leviv.github.io, and its main feature is "An extension to greatly improve the look and feel of Mike Scott's CS 312 and CS 314 website".

Extension Screenshots

screenshot

Download Mike's Got Style Extension CRX File

Download Mike's Got Style extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Mike's Got Style Mike's Got Style
ID bpfphblljclepkkgcemfhckcebchiled
Official URL https://chrome.google.com/webstore/detail/bpfphblljclepkkgcemfhckcebchiled
Description An extension to greatly improve the look and feel of Mike Scott's CS 312 and CS 314 website
File Size 208 KB
Installation Count 77
Current Version 2.1
Last Updated 2018-01-15
Publish Date 2018-01-15
Rating 5.00/5 Total 6 Ratings
Developer https://leviv.github.io
Payment Type free
Supported Languages 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"
    ]
}