Wordpress Chrome Bug Fix

Correct issue with Wordpress Admin menu rendering in Chrome.

Wordpress Chrome Bug Fixคืออะไร?

Wordpress Chrome Bug Fix เป็นส่วนขยายของ Chrome ที่พัฒนาโดย funkjedi และคุณลักษณะหลักของมันคือ "Correct issue with Wordpress Admin menu rendering in Chrome."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Wordpress Chrome Bug Fix

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

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

                        In Chrome 45 the Slimming Paint feature is enabled by default. This feature caused rendering issues with the Wordpress Admin menu. This extension works around the issue by injecting one line of CSS into the Wordpress admin pages that corrects the display issue.

More information on the bug can be found in the related Wordpress and Chrome tickets.

https://core.trac.wordpress.org/ticket/33199
https://code.google.com/p/chromium/issues/detail?id=509179                    

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

ชื่อ Wordpress Chrome Bug Fix Wordpress Chrome Bug Fix
ID kfagnlhfdmaiflgmmppoceboadljmeoe
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/wordpress-chrome-bug-fix/kfagnlhfdmaiflgmmppoceboadljmeoe
คำอธิบาย Correct issue with Wordpress Admin menu rendering in Chrome.
ขนาดไฟล์ 22.01 KB
จำนวนการติดตั้ง 284
เวอร์ชันปัจจุบัน 0.0.1
อัปเดตครั้งล่าสุด 2015-09-09
วันที่เผยแพร่ 2015-09-09
คะแนน 5.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา funkjedi
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/funkjedi/wp-chrome-bug-fix
URL หน้าช่วยเหลือ https://github.com/funkjedi/wp-chrome-bug-fix/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Wordpress Chrome Bug Fix",
    "version": "0.0.1",
    "description": "Correct issue with Wordpress Admin menu rendering in Chrome.",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/wp-admin\/*",
                "https:\/\/*\/wp-admin\/*",
                "http:\/\/*\/*\/wp-admin\/*",
                "https:\/\/*\/*\/wp-admin\/*"
            ],
            "js": [
                "fix.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "http:\/\/*\/wp-admin\/*",
        "https:\/\/*\/wp-admin\/*",
        "http:\/\/*\/*\/wp-admin\/*",
        "https:\/\/*\/*\/wp-admin\/*"
    ],
    "icons": {
        "48": "icons\/48x48.png",
        "128": "icons\/128x128.png"
    },
    "manifest_version": 2
}