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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        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
عنوان صفحة المساعدة 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
}