Reload CSS
A developer tool that adds a button to reload only css stylesheets.
Cos'è Reload CSS?
Reload CSS è un'estensione di Chrome sviluppata da https://richard.parnaby-king.co.uk, e la sua funzione principale è "A developer tool that adds a button to reload only css stylesheets.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Reload CSS
Scarica i file di estensione Reload 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
A developer tool that adds a button to reload only css stylesheets. It does this by appending a timestamp to the css file path, e.g. `/path/to/file.css` into `/path/to/file.css?7123654789`
Informazioni di Base sull'Estensione
Nome | Reload CSS |
ID | ojbbeapndipcgcjgmlelgbgmmalhjkef |
URL Ufficiale | https://chromewebstore.google.com/detail/reload-css/ojbbeapndipcgcjgmlelgbgmmalhjkef |
Descrizione | A developer tool that adds a button to reload only css stylesheets. |
Dimensione del File | 106 KB |
Conteggio Installazioni | 97 |
Versione Corrente | 1 |
Ultimo Aggiornamento | 2016-03-10 |
Data di Pubblicazione | 2016-03-10 |
Valutazione | 4.00/5 Totale 1 Valutazioni |
Sviluppatore | https://richard.parnaby-king.co.uk |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/richard-parnaby-king/Reload-CSS |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Reload CSS", "short_name": "Reload CSS", "description": "A developer tool that adds a button to reload only css stylesheets.", "version": "1", "author": "Richard Parnaby-King", "homepage_url": "https:\/\/github.com\/richard-parnaby-king\/Reload-CSS", "icons": { "128": "icon.png" }, "browser_action": { "default_icon": "icon.png" }, "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "background": { "scripts": [ "background.js" ], "persistent": false } } |