CSS3 Generator
A handy generator for all of your CSS3 needs from within the browser
什麼是CSS3 Generator?
CSS3 Generator是由ahallicks開發的Chrome擴展程式,該擴展的主要功能是“A handy generator for all of your CSS3 needs from within the browser”。
擴展截圖
下載CSS3 Generator擴展crx文件
下載CSS3 Generator擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | CSS3 Generator |
ID | dmlgmehijaodgkkooghkknjjkddahmej |
官方網址 | https://chromewebstore.google.com/detail/css3-generator/dmlgmehijaodgkkooghkknjjkddahmej |
簡介 | A handy generator for all of your CSS3 needs from within the browser |
檔案大小 | 346 KB |
安裝次數 | 14,364 |
目前版本 | 1.0.6 |
更新時間 | 2023-02-06 |
上架時間 | 2014-07-09 |
評分 | 4.72/5 共 60 次評分 |
開發者 | ahallicks |
電子郵箱 | [email protected] |
付費類型 | free |
說明頁面URL | https://bitbucket.org/ahallicks/css3-generator/issues |
支援的語言 | 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" } } } } |