Wordpress Chrome Bug Fix

Correct issue with Wordpress Admin menu rendering in Chrome.

Wordpress Chrome Bug Fix là gì?

Wordpress Chrome Bug Fix là một tiện ích mở rộng Chrome được phát triển bởi funkjedi, và tính năng chính của nó là "Correct issue with Wordpress Admin menu rendering in Chrome.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Wordpress Chrome Bug Fix

Tải xuống các tệp mở rộng Wordpress Chrome Bug Fix dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Wordpress Chrome Bug Fix Wordpress Chrome Bug Fix
ID kfagnlhfdmaiflgmmppoceboadljmeoe
URL Chính Thức https://chrome.google.com/webstore/detail/wordpress-chrome-bug-fix/kfagnlhfdmaiflgmmppoceboadljmeoe
Mô tả Correct issue with Wordpress Admin menu rendering in Chrome.
Kích Thước Tệp 22.01 KB
Số Lần Cài Đặt 284
Phiên Bản Hiện Tại 0.0.1
Cập Nhật Lần Cuối 2015-09-09
Ngày Phát Hành 2015-09-09
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển funkjedi
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/funkjedi/wp-chrome-bug-fix
URL Trang Trợ Giúp https://github.com/funkjedi/wp-chrome-bug-fix/issues
Ngôn Ngữ Được Hỗ Trợ 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
}