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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย 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"
    ]
}