Reload CSS
A developer tool that adds a button to reload only css stylesheets.
Was ist Reload CSS?
Reload CSS ist eine Chrome-Erweiterung, die von https://richard.parnaby-king.co.uk entwickelt wurde, und ihr Hauptmerkmal ist "A developer tool that adds a button to reload only css stylesheets.".
Erweiterungsscreenshots
Reload CSS-Erweiterungs-CRX-Datei herunterladen
Laden Sie Reload CSS-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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`
Grundlegende Informationen zur Erweiterung
Name | Reload CSS |
ID | ojbbeapndipcgcjgmlelgbgmmalhjkef |
Offizielle URL | https://chromewebstore.google.com/detail/reload-css/ojbbeapndipcgcjgmlelgbgmmalhjkef |
Beschreibung | A developer tool that adds a button to reload only css stylesheets. |
Dateigröße | 106 KB |
Installationsanzahl | 97 |
Aktuelle Version | 1 |
Letztes Update | 2016-03-10 |
Veröffentlichungsdatum | 2016-03-10 |
Bewertung | 4.00/5 Insgesamt 1 Bewertungen |
Entwickler | https://richard.parnaby-king.co.uk |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/richard-parnaby-king/Reload-CSS |
Unterstützte Sprachen | 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 } } |