Reload CSS
A developer tool that adds a button to reload only css stylesheets.
Qu'est-ce que Reload CSS ?
Reload CSS est une extension Chrome développée par https://richard.parnaby-king.co.uk, et sa fonction principale est "A developer tool that adds a button to reload only css stylesheets.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Reload CSS
Téléchargez les fichiers d'extension Reload CSS au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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`
Informations de Base sur l'Extension
Nom | Reload CSS |
ID | ojbbeapndipcgcjgmlelgbgmmalhjkef |
URL Officiel | https://chromewebstore.google.com/detail/reload-css/ojbbeapndipcgcjgmlelgbgmmalhjkef |
Description | A developer tool that adds a button to reload only css stylesheets. |
Taille du Fichier | 106 KB |
Nombre d'Installations | 97 |
Version Actuelle | 1 |
Dernière Mise à Jour | 2016-03-10 |
Date de Publication | 2016-03-10 |
Évaluation | 4.00/5 Total 1 Évaluations |
Développeur | https://richard.parnaby-king.co.uk |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/richard-parnaby-king/Reload-CSS |
Langues Prises en Charge | 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 } } |