CSS3 Generator

A handy generator for all of your CSS3 needs from within the browser

Apa itu CSS3 Generator?

CSS3 Generator adalah ekstensi Chrome yang dikembangkan oleh ahallicks, dan fitur utamanya adalah "A handy generator for all of your CSS3 needs from within the browser".

Screenshot Ekstensi

screenshot
screenshot
screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi CSS3 Generator

Unduh file ekstensi CSS3 Generator dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        CSS3 Generator is a handy extension that will create the code you need for your CSS. It currently generates cross-browser (as far as possible) code for the following CSS3 properties:
										 - Text Shadow
 - NEW, multiple shadows can now be added
- Hex/RGBA
- Transforms
- Border Radius
- Box Shadow
 - NEW, multiple shadows can now be added
 - NEW, box shadows can be set to inset
- Columns
- Gradients
 - Linear
 - Radial
 - Striped (NEW!)
- Arrows (for tooltips etc)

More features are also on the way and things will be kept up-to-date as standards change and rearrange.

Each section has handy sliders (where applicable) to select the desired values for each CSS propery and for gradients you can quickly and easily add and remove color-stops to create your perfect gradient!

All that's left to do is copy the generated code into your CSS and you're done!

If you'd like to see a CSS3 feature added please send some feedback. There is a support site if you have any issues, or find a bug.


Latest Changes
--------------

v 1.0.5
-----------

 - Fixed a bug in Chrome that means the change event doesn't fire for sliders. Added a fix so that now all sliders will update in real time as they are changed.


v 1.0.4
-----------

 - Annoyingly something has changed in Chrome that means the change event doesn't fire when the value of the slider changes, but rather when the mouseup event fires. Sliders will update the values, but only when you let go of the mouse.
 - Updated the RGBa < - > converter so that RGB values update the hex. A change is coming to CSS soon that may see opacity added as an extra two characters in hexadecimal values. I'll update if this ever gets released.
 - Also added the alpha portion of the RGBa to the example colour. It will now fade out as you add more alpha (opacity) to the colour.
 - Can now set box shadows as inset.
 - Some bug fixes and optimisations.

v 1.0.3
-----------

 - added striped gradients under the gradients tab
 - added support for multiple text shadows
   - and opacity
 - added support for multiple box shadows
   - and opacity

v 1.0.2
-----------

 - fixed an issue where the colors section of the transitions wasn't working, or saving the given options.
 - changed hex and RGBa title to show that they are interchangeable conversions

v 1.0.1
-----------

Everything should be a little more smooth now with the code optimisations.

 - Added transitions tab with three sub tabs.
   - Position: Animate the top, right, bottom and left position.
   - Edges: Animate the edges (margins, padding, etc).
   - Colors: Animate various colors (background, border, etc).
   - Easing: Set the easing option (including custom beziers!).
 - Added filters tab with two sub tabs
   - Main Filters: The set of filters not requiring a bunch of options
   - Drop Shadow: Requires a few options so put in a separate tab
 - Moved transforms, border radius and box shadow to their own tab now called Box Model for space saving and brevity.
 - Started adding some information/help guides for some of the CSS3 properties.
 - Couple of bug fixes, especially where some tabs weren't working correctly.
 - Some code fixes and optimisation. Spending too long looking at code makes for bad code.                    

Informasi Dasar Ekstensi

Nama CSS3 Generator CSS3 Generator
ID dmlgmehijaodgkkooghkknjjkddahmej
URL Resmi https://chromewebstore.google.com/detail/css3-generator/dmlgmehijaodgkkooghkknjjkddahmej
Deskripsi A handy generator for all of your CSS3 needs from within the browser
Ukuran File 346 KB
Jumlah Instalasi 14,364
Versi Saat Ini 1.0.6
Terakhir Diperbarui 2023-02-06
Tanggal Publikasi 2014-07-09
Penilaian 4.72/5 Total 60 Penilaian
Pengembang ahallicks
Email [email protected]
Tipe Pembayaran free
URL Halaman Bantuan https://bitbucket.org/ahallicks/css3-generator/issues
Bahasa yang Didukung en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "CSS3 Generator",
    "description": "A handy generator for all of your CSS3 needs from within the browser",
    "version": "1.0.6",
    "permissions": [
        "notifications"
    ],
    "browser_action": {
        "default_icon": {
            "19": "img\/icon.png",
            "38": "img\/icon-38.png"
        },
        "default_title": "Generate some CSS3",
        "default_popup": "generator.html"
    },
    "background": {
        "page": "background.html",
        "persistent": false
    },
    "icons": {
        "16": "img\/icon.png",
        "32": "img\/icon-38.png",
        "48": "img\/icon-64.png"
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "web_accessible_resources": [
        "img\/icon-64.png"
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+A"
            }
        }
    }
}