CSS TRIMMER

Creates a single line Style tag from Chrome's dev tools Styles menu

O que é CSS TRIMMER?

CSS TRIMMER é uma extensão do Chrome desenvolvida por Alon Adler, e sua principal característica é "Creates a single line Style tag from Chrome's dev tools Styles menu".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão CSS TRIMMER

Baixe arquivos de extensão CSS TRIMMER 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

                        Quickly turns Dev Tools CSS Styles code to an inline style tag.

For example, turn:

display: block;
height: 14em;
resize: vertical;

To:

style='display: block; height: 14em; resize: vertical;'

In a single click.

How to use:
1- Copy any CSS code block from Chrome's Dev Tools Styles menu to the clipboard (CTRL+C).
2- Press the CSS icon in the extensions menu.
3- That's it, you're done, the inline style tag is auto copied to your clipboard (and also visible in the popup page).

4- You can modify the CSS code and press the 'ReTrim' button to create the style tag again, with your changes.                    

Informações Básicas da Extensão

Nome CSS TRIMMER CSS TRIMMER
ID hdhbfineemcdppmmlahpohaiinapaejc
URL Oficial https://chromewebstore.google.com/detail/css-trimmer/hdhbfineemcdppmmlahpohaiinapaejc
Descrição Creates a single line Style tag from Chrome's dev tools Styles menu
Tamanho do Arquivo 18 KB
Contagem de Instalações 54
Versão Atual 1.0
Última Atualização 2017-04-20
Data de Publicação 2017-04-20
Classificação 5.00/5 Total de 6 Avaliações
Desenvolvedor Alon Adler
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "CSS TRIMMER",
    "short_name": "CSS TRIMMER",
    "author": "Alon Adler",
    "description": "Creates a single line Style tag from Chrome's dev tools Styles menu",
    "version": "1.0",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon48.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "clipboardRead",
        "clipboardWrite"
    ]
}