Wordpress Style Editor
Save CSS changes made in developer tools, directly to the Wordpress stylesheet.
Was ist Wordpress Style Editor?
Wordpress Style Editor ist eine Chrome-Erweiterung, die von Levi Melamed entwickelt wurde, und ihr Hauptmerkmal ist "Save CSS changes made in developer tools, directly to the Wordpress stylesheet.".
Erweiterungsscreenshots
Wordpress Style Editor-Erweiterungs-CRX-Datei herunterladen
Laden Sie Wordpress Style Editor-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Using chrome developer tools, you can inspect your theme styles and make modifications to the CSS. However, those changes are lost as soon as you refresh the page. With this extension, you can instantly save those CSS changes directly to your theme stylesheet, without editing any files, or using FTP programs. Notes: - Changes saved to the stylesheet happen in real-time, so proceed with caution. - Currently, the extension only works on the style.css file located in the themes root folder. New in 1.3.1: - added child theme support. New in 1.3: - Bug fixes. New in 1.2: - Revamped interface, switched to popup UI. - Added auto-save feature. Source code is available here: github.com/stri8ed/wordpress-style-editor-chrome-ext
Grundlegende Informationen zur Erweiterung
Name | Wordpress Style Editor |
ID | bgdpllcnhcmpfcheafdhimpklhjoommn |
Offizielle URL | https://chromewebstore.google.com/detail/wordpress-style-editor/bgdpllcnhcmpfcheafdhimpklhjoommn |
Beschreibung | Save CSS changes made in developer tools, directly to the Wordpress stylesheet. |
Dateigröße | 47.72 KB |
Installationsanzahl | 6,025 |
Aktuelle Version | 1.3.3 |
Letztes Update | 2015-01-27 |
Veröffentlichungsdatum | 2015-01-27 |
Bewertung | 3.09/5 Insgesamt 47 Bewertungen |
Entwickler | Levi Melamed |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_extName__", "version": "1.3.3", "description": "__MSG_extDesc__", "manifest_version": 2, "default_locale": "en", "permissions": [ "tabs", "cookies", "http:\/\/*\/*", "https:\/\/*\/*" ], "page_action": { "default_icon": { "19": "\/img\/icon48.png", "38": "\/img\/icon48.png" }, "default_title": "Wordpress Style Editor", "default_popup": "\/html\/popup.html" }, "icons": { "48": "\/img\/icon48.png", "128": "\/img\/icon128.png" }, "devtools_page": "\/html\/devtools.html", "background": { "scripts": [ "\/js\/background.js" ] }, "minimum_chrome_version": "18" } |