Mike's Got Style

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

Vad är Mike's Got Style?

Mike's Got Style är en Chrome-tillägg utvecklad av https://leviv.github.io, och dess huvudfunktion är "An extension to greatly improve the look and feel of Mike Scott's CS 312 and CS 314 website".

Tilläggsskärmbilder

screenshot

Ladda ner Mike's Got Style-förlängningens CRX-fil

Ladda ner Mike's Got Style-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Mike's Got Style Mike's Got Style
ID bpfphblljclepkkgcemfhckcebchiled
Officiell webbadress https://chrome.google.com/webstore/detail/bpfphblljclepkkgcemfhckcebchiled
Beskrivning An extension to greatly improve the look and feel of Mike Scott's CS 312 and CS 314 website
Filstorlek 208 KB
Antal Installationer 77
Aktuell Version 2.1
Senast Uppdaterad 2018-01-15
Publiceringsdatum 2018-01-15
Betyg 5.00/5 Totalt 6 Betyg
Utvecklare https://leviv.github.io
Betalningssätt free
Stödda Språk 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"
    ]
}