Mike's Got Style

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

O que é Mike's Got Style?

Mike's Got Style é uma extensão do Chrome desenvolvida por https://leviv.github.io, e sua principal característica é "An extension to greatly improve the look and feel of Mike Scott's CS 312 and CS 314 website".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Mike's Got Style

Baixe arquivos de extensão Mike's Got Style no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome Mike's Got Style Mike's Got Style
ID bpfphblljclepkkgcemfhckcebchiled
URL Oficial https://chrome.google.com/webstore/detail/bpfphblljclepkkgcemfhckcebchiled
Descrição An extension to greatly improve the look and feel of Mike Scott's CS 312 and CS 314 website
Tamanho do Arquivo 208 KB
Contagem de Instalações 77
Versão Atual 2.1
Última Atualização 2018-01-15
Data de Publicação 2018-01-15
Classificação 5.00/5 Total de 6 Avaliações
Desenvolvedor https://leviv.github.io
Tipo de Pagamento free
Idiomas Suportados 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"
    ]
}