Wordpress Style Editor

Save CSS changes made in developer tools, directly to the Wordpress stylesheet.

O que é Wordpress Style Editor?

Wordpress Style Editor é uma extensão do Chrome desenvolvida por Levi Melamed, e sua principal característica é "Save CSS changes made in developer tools, directly to the Wordpress stylesheet.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Wordpress Style Editor

Baixe arquivos de extensão Wordpress Style Editor no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Wordpress Style Editor Wordpress Style Editor
ID bgdpllcnhcmpfcheafdhimpklhjoommn
URL Oficial https://chromewebstore.google.com/detail/wordpress-style-editor/bgdpllcnhcmpfcheafdhimpklhjoommn
Descrição Save CSS changes made in developer tools, directly to the Wordpress stylesheet.
Tamanho do Arquivo 47.72 KB
Contagem de Instalações 6,025
Versão Atual 1.3.3
Última Atualização 2015-01-27
Data de Publicação 2015-01-27
Classificação 3.09/5 Total de 47 Avaliações
Desenvolvedor Levi Melamed
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
}