Mike's Got Style

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

Hvad er Mike's Got Style?

Mike's Got Style er en Chrome-udvidelse udviklet af https://leviv.github.io, og dens hovedfunktion er "An extension to greatly improve the look and feel of Mike Scott's CS 312 and CS 314 website".

Udvidelsesskærmbilleder

screenshot

Download Mike's Got Style-udvidelses-CRX-fil

Download Mike's Got Style-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

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

Grundlæggende oplysninger om udvidelsen

Navn Mike's Got Style Mike's Got Style
ID bpfphblljclepkkgcemfhckcebchiled
Officiel URL https://chrome.google.com/webstore/detail/bpfphblljclepkkgcemfhckcebchiled
Beskrivelse An extension to greatly improve the look and feel of Mike Scott's CS 312 and CS 314 website
Filstørrelse 208 KB
Antal Installationer 77
Nuværende Version 2.1
Senest Opdateret 2018-01-15
Udgivelsesdato 2018-01-15
Bedømmelse 5.00/5 Samlet 6 Bedømmelser
Udvikler https://leviv.github.io
Betalingsmetode free
Understøttede Sprog 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"
    ]
}