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 } |