Wordpress Chrome Bug Fix
Correct issue with Wordpress Admin menu rendering in Chrome.
什么是Wordpress Chrome Bug Fix?
Wordpress Chrome Bug Fix是由funkjedi开发的Chrome扩展程序,该扩展的主要功能是“Correct issue with Wordpress Admin menu rendering in Chrome.”。
扩展截图
下载Wordpress Chrome Bug Fix扩展crx文件
下载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
扩展基本信息
名称 | |
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 } |