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 |
官方網址 | 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 } |