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 هو إضافة Chrome تم تطويرها بواسطة https://leviv.github.io، والميزة الرئيسية لها هي "An extension to greatly improve the look and feel of Mike Scott's CS 312 and CS 314 website".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Mike's Got Style

قم بتنزيل ملفات الامتداد Mike's Got Style بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
    ]
}