Reload CSS
A developer tool that adds a button to reload only css stylesheets.
ما هو Reload CSS؟
Reload CSS هو إضافة Chrome تم تطويرها بواسطة https://richard.parnaby-king.co.uk، والميزة الرئيسية لها هي "A developer tool that adds a button to reload only css stylesheets.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Reload CSS
قم بتنزيل ملفات الامتداد Reload CSS بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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`
معلومات أساسية عن التمديد
الاسم | Reload CSS |
ID | ojbbeapndipcgcjgmlelgbgmmalhjkef |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/reload-css/ojbbeapndipcgcjgmlelgbgmmalhjkef |
الوصف | A developer tool that adds a button to reload only css stylesheets. |
حجم الملف | 106 KB |
عدد التثبيتات | 97 |
النسخة الحالية | 1 |
آخر تحديث | 2016-03-10 |
تاريخ النشر | 2016-03-10 |
تقييم | 4.00/5 مجموع تقييمات 1 |
المطور | https://richard.parnaby-king.co.uk |
نوع الدفع | free |
موقع الإضافة | https://github.com/richard-parnaby-king/Reload-CSS |
اللغات المدعومة | 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 } } |