Sniper CSS

Avoid unused CSS styles code in your Web/Apps.

ما هو Sniper CSS؟

Sniper CSS هو إضافة Chrome تم تطويرها بواسطة giustiRo، والميزة الرئيسية لها هي "Avoid unused CSS styles code in your Web/Apps.".

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

screenshot
screenshot

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

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

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

                        Hi Devs!

This extension will interact and try to collect all CSS rules of your site, using emulations like Dark and Light themes, going through different media breakpoints, switching User Agents and so on.

It will be being improved with time! Try it!

Supporting:
-Multiple Breakpoints
-Dark and Light Themes
-Multiple User-Agents
-Node's Pseudo-States
-Keyframes
-Other At-rules like prefers-motion, pointer, etc.
-On-load hook related rules.

Roadmap:
-To add some user inputs preferences and apply them to generated CSS file.                    

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

الاسم Sniper CSS Sniper CSS
ID kknjnehpgiaeljeilemamjjiopemockp
عنوان URL الرسمي https://chromewebstore.google.com/detail/sniper-css/kknjnehpgiaeljeilemamjjiopemockp
الوصف Avoid unused CSS styles code in your Web/Apps.
حجم الملف 68.29 KB
عدد التثبيتات 261
النسخة الحالية 1.1
آخر تحديث 2023-04-19
تاريخ النشر 2023-04-12
تقييم 4.67/5 مجموع تقييمات 3
المطور giustiRo
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Sniper CSS",
    "version": "1.1",
    "description": "Avoid unused CSS styles code in your Web\/Apps.",
    "manifest_version": 3,
    "permissions": [
        "tabs",
        "activeTab",
        "scripting",
        "debugger"
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "action": {
        "default_popup": "index.html",
        "default_title": "Optimize CSS for this site!",
        "default_icon": {
            "16": "assets\/16.png",
            "24": "assets\/24.png",
            "32": "assets\/32.png",
            "64": "assets\/64.png",
            "100": "assets\/100.png"
        }
    },
    "host_permissions": [
        "http:\/\/*\/",
        "https:\/\/*\/"
    ]
}