Wordpress Chrome Bug Fix

Correct issue with Wordpress Admin menu rendering in Chrome.

What is Wordpress Chrome Bug Fix?

Wordpress Chrome Bug Fix is a Chrome extension developed by funkjedi, and its main feature is "Correct issue with Wordpress Admin menu rendering in Chrome.".

Extension Screenshots

screenshot

Download Wordpress Chrome Bug Fix Extension CRX File

Download Wordpress Chrome Bug Fix extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Wordpress Chrome Bug Fix Wordpress Chrome Bug Fix
ID kfagnlhfdmaiflgmmppoceboadljmeoe
Official URL https://chrome.google.com/webstore/detail/wordpress-chrome-bug-fix/kfagnlhfdmaiflgmmppoceboadljmeoe
Description Correct issue with Wordpress Admin menu rendering in Chrome.
File Size 22.01 KB
Installation Count 284
Current Version 0.0.1
Last Updated 2015-09-09
Publish Date 2015-09-09
Rating 5.00/5 Total 4 Ratings
Developer funkjedi
Payment Type free
Extension Website https://github.com/funkjedi/wp-chrome-bug-fix
Help Page URL https://github.com/funkjedi/wp-chrome-bug-fix/issues
Supported Languages 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
}