Mike's Got Style

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

Mike's Got Styleとは何ですか?

Mike's Got Styleはhttps://leviv.github.ioによって開発されたChromeの拡張機能で、その主な機能は「An extension to greatly improve the look and feel of Mike Scott's CS 312 and CS 314 website」です。

拡張機能のスクリーンショット

screenshot

Mike's Got Style拡張機能のCRXファイルをダウンロード

Mike's Got Style拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

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

拡張機能の基本情報

名前 Mike's Got Style Mike's Got Style
ID bpfphblljclepkkgcemfhckcebchiled
公式URL https://chrome.google.com/webstore/detail/bpfphblljclepkkgcemfhckcebchiled
説明 An extension to greatly improve the look and feel of Mike Scott's CS 312 and CS 314 website
ファイルサイズ 208 KB
インストール数 77
現在のバージョン 2.1
最終更新日 2018-01-15
公開日 2018-01-15
評価 5.00/5 合計 6 レビュー
開発者 https://leviv.github.io
支払い方法 free
対応言語 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"
    ]
}