MGoBlog Enhancer

Fixes and customizes our favorite Michigan sports blog

MGoBlog Enhancerคืออะไร?

MGoBlog Enhancer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย TJ และคุณลักษณะหลักของมันคือ "Fixes and customizes our favorite Michigan sports blog"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย MGoBlog Enhancer

ดาวน์โหลดไฟล์ส่วนขยาย MGoBlog Enhancer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        A work in progress.

This extension was created to address some of the lingering issues surrounding MGoBlog v3. 

1. Remembers your last selected comments-per-page selection, and loads those comments on page load
2. Fixes the issue of replying comments crunching in from both sides
3. Allows you to hover on player names and see some basic information on that player
4. Scrolls to jump when you click "Read more" button
5. ** NEW 10/14/2019 ** Just in time for the thick of the schedule, TROLL CAVE. Hide comments from users you don't care to hear from!
6. ** NEW 10/14/2019 ** Options page to turn features on and off and manage
7. ** NEW 10/28/2019 ** Saves your thread sort preferences (newest or oldest posts first)
8. ** NEW 10/28/2019 ** Opens YouTube videos in an embedded player, stopping you from navigating away or opening a new tab (similar to old site functionality)

Taking requests. There are limits to what can be accomplished through the extension, so it is not a fix-all.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ MGoBlog Enhancer MGoBlog Enhancer
ID lihllkknledmhofkkocglpocfnjgijjn
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/mgoblog-enhancer/lihllkknledmhofkkocglpocfnjgijjn
คำอธิบาย Fixes and customizes our favorite Michigan sports blog
ขนาดไฟล์ 41.84 KB
จำนวนการติดตั้ง 191
เวอร์ชันปัจจุบัน 2.5
อัปเดตครั้งล่าสุด 2019-10-30
วันที่เผยแพร่ 2019-10-30
คะแนน 5.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา TJ
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "MGoBlog Enhancer",
    "version": "2.5",
    "description": "Fixes and customizes our favorite Michigan sports blog",
    "permissions": [
        "storage",
        "activeTab",
        "webRequest",
        "*:\/\/*.mgoblog.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.mgoblog.com\/*",
                "*:\/\/*.collegefootballdata.com\/*"
            ],
            "css": [
                "mgl-styles.css"
            ],
            "js": [
                "jquery-3.4.1.min.js",
                "background.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "manifest_version": 2,
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "options_page": "options.html",
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    }
}