CSS TRIMMER

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

Was ist CSS TRIMMER?

CSS TRIMMER ist eine Chrome-Erweiterung, die von Alon Adler entwickelt wurde, und ihr Hauptmerkmal ist "Creates a single line Style tag from Chrome's dev tools Styles menu".

Erweiterungsscreenshots

screenshot

CSS TRIMMER-Erweiterungs-CRX-Datei herunterladen

Laden Sie CSS TRIMMER-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

                        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.                    

Grundlegende Informationen zur Erweiterung

Name CSS TRIMMER CSS TRIMMER
ID hdhbfineemcdppmmlahpohaiinapaejc
Offizielle URL https://chromewebstore.google.com/detail/css-trimmer/hdhbfineemcdppmmlahpohaiinapaejc
Beschreibung Creates a single line Style tag from Chrome's dev tools Styles menu
Dateigröße 18 KB
Installationsanzahl 54
Aktuelle Version 1.0
Letztes Update 2017-04-20
Veröffentlichungsdatum 2017-04-20
Bewertung 5.00/5 Insgesamt 6 Bewertungen
Entwickler Alon Adler
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    ]
}