Reload CSS
A developer tool that adds a button to reload only css stylesheets.
Wat is Reload CSS?
Reload CSS is een Chrome-extensie ontwikkeld door https://richard.parnaby-king.co.uk, en de belangrijkste functie is "A developer tool that adds a button to reload only css stylesheets.".
Extensie Screenshots
Download het CRX-bestand van de extensie Reload CSS
Download Reload CSS-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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`
Basisinformatie over de Extensie
Naam | Reload CSS |
ID | ojbbeapndipcgcjgmlelgbgmmalhjkef |
Officiële URL | https://chromewebstore.google.com/detail/reload-css/ojbbeapndipcgcjgmlelgbgmmalhjkef |
Beschrijving | A developer tool that adds a button to reload only css stylesheets. |
Bestandsgrootte | 106 KB |
Aantal Installaties | 97 |
Huidige Versie | 1 |
Laatst Bijgewerkt | 2016-03-10 |
Publicatiedatum | 2016-03-10 |
Beoordeling | 4.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | https://richard.parnaby-king.co.uk |
Betalingswijze | free |
Extensiewebsite | https://github.com/richard-parnaby-king/Reload-CSS |
Ondersteunde Talen | 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 } } |