Save CSS

Save your CSS and JS modifications in Devtools automatically to local disk.

ما هو Save CSS؟

Save CSS هو إضافة Chrome تم تطويرها بواسطة Tomi Mickelsson، والميزة الرئيسية لها هي "Save your CSS and JS modifications in Devtools automatically to local disk.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Save CSS

قم بتنزيل ملفات الامتداد Save CSS بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Save CSS is a Chrome extension that speeds up your web UI development workflow
by automatically saving your CSS and Javascript modifications in Chrome
Developer Tools into the local disk. Eliminate manual copying and pasting of
CSS values from Developer Tools to source files and install this extension.

This extension requires an external script that is written in Python or Ruby. Pick one of them:

Get the python script from: https://raw.github.com/tomimick/chrome-ext-save-css/master/servers/server.py

Alternatively, get the Ruby script from: https://raw.github.com/tomimick/chrome-ext-save-css/master/servers/server.rb

See usage and technical information in author's blog in http://tomicloud.com/2012/04/save-css-chrome-ext                    

معلومات أساسية عن التمديد

الاسم Save CSS Save CSS
ID mflkegihknjnhmpfnaimpfkjbkelhhkf
عنوان URL الرسمي https://chromewebstore.google.com/detail/save-css/mflkegihknjnhmpfnaimpfkjbkelhhkf
الوصف Save your CSS and JS modifications in Devtools automatically to local disk.
حجم الملف 23.44 KB
عدد التثبيتات 2,667
النسخة الحالية 1.0.3
آخر تحديث 2012-08-23
تاريخ النشر 2012-08-23
تقييم 3.86/5 مجموع تقييمات 29
المطور Tomi Mickelsson
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة http://tomicloud.com
عنوان صفحة المساعدة http://tomicloud.com/2012/04/save-css-chrome-ext
اللغات المدعومة en-US
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Save CSS",
    "version": "1.0.3",
    "description": "Save your CSS and JS modifications in Devtools automatically to local disk.",
    "manifest_version": 2,
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "icons": {
        "16": "icon16.png",
        "128": "icon128.png"
    },
    "devtools_page": "devtools.html",
    "background": {
        "scripts": [
            "bg.js"
        ]
    },
    "minimum_chrome_version": "18"
}