Wordpress Chrome Bug Fix
Correct issue with Wordpress Admin menu rendering in Chrome.
Cos'è Wordpress Chrome Bug Fix?
Wordpress Chrome Bug Fix è un'estensione di Chrome sviluppata da funkjedi, e la sua funzione principale è "Correct issue with Wordpress Admin menu rendering in Chrome.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Wordpress Chrome Bug Fix
Scarica i file di estensione Wordpress Chrome Bug Fix in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | |
ID | kfagnlhfdmaiflgmmppoceboadljmeoe |
URL Ufficiale | https://chrome.google.com/webstore/detail/wordpress-chrome-bug-fix/kfagnlhfdmaiflgmmppoceboadljmeoe |
Descrizione | Correct issue with Wordpress Admin menu rendering in Chrome. |
Dimensione del File | 22.01 KB |
Conteggio Installazioni | 284 |
Versione Corrente | 0.0.1 |
Ultimo Aggiornamento | 2015-09-09 |
Data di Pubblicazione | 2015-09-09 |
Valutazione | 5.00/5 Totale 4 Valutazioni |
Sviluppatore | funkjedi |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/funkjedi/wp-chrome-bug-fix |
URL della Pagina di Aiuto | https://github.com/funkjedi/wp-chrome-bug-fix/issues |
Lingue Supportate | 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 } |