Sniper CSS
Avoid unused CSS styles code in your Web/Apps.
Cos'è Sniper CSS?
Sniper CSS è un'estensione di Chrome sviluppata da giustiRo, e la sua funzione principale è "Avoid unused CSS styles code in your Web/Apps.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Sniper CSS
Scarica i file di estensione Sniper CSS in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Hi Devs! This extension will interact and try to collect all CSS rules of your site, using emulations like Dark and Light themes, going through different media breakpoints, switching User Agents and so on. It will be being improved with time! Try it! Supporting: -Multiple Breakpoints -Dark and Light Themes -Multiple User-Agents -Node's Pseudo-States -Keyframes -Other At-rules like prefers-motion, pointer, etc. -On-load hook related rules. Roadmap: -To add some user inputs preferences and apply them to generated CSS file.
Informazioni di Base sull'Estensione
Nome | Sniper CSS |
ID | kknjnehpgiaeljeilemamjjiopemockp |
URL Ufficiale | https://chromewebstore.google.com/detail/sniper-css/kknjnehpgiaeljeilemamjjiopemockp |
Descrizione | Avoid unused CSS styles code in your Web/Apps. |
Dimensione del File | 68.29 KB |
Conteggio Installazioni | 261 |
Versione Corrente | 1.1 |
Ultimo Aggiornamento | 2023-04-19 |
Data di Pubblicazione | 2023-04-12 |
Valutazione | 4.67/5 Totale 3 Valutazioni |
Sviluppatore | giustiRo |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Sniper CSS", "version": "1.1", "description": "Avoid unused CSS styles code in your Web\/Apps.", "manifest_version": 3, "permissions": [ "tabs", "activeTab", "scripting", "debugger" ], "background": { "service_worker": "background.js", "type": "module" }, "action": { "default_popup": "index.html", "default_title": "Optimize CSS for this site!", "default_icon": { "16": "assets\/16.png", "24": "assets\/24.png", "32": "assets\/32.png", "64": "assets\/64.png", "100": "assets\/100.png" } }, "host_permissions": [ "http:\/\/*\/", "https:\/\/*\/" ] } |