Stylite

Quickly customize styling on any website

ما هو Stylite؟

Stylite هو إضافة Chrome تم تطويرها بواسطة Zenture، والميزة الرئيسية لها هي "Quickly customize styling on any website".

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

screenshot

تحميل ملف CRX للإضافة Stylite

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

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

                        A super lightweight style editor. Apply any styles you want to any site.

* Click the paint palette icon to bring up the style editor for the current site
* Click outside the editor to save
  * You can also press cmd+enter to save at any time

This extension is free and open source! Check it out: https://github.com/iansinnott/stylite                    

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

الاسم Stylite Stylite
ID alghcdmjanomnafjjmmhegabkilpbaea
عنوان URL الرسمي https://chromewebstore.google.com/detail/stylite/alghcdmjanomnafjjmmhegabkilpbaea
الوصف Quickly customize styling on any website
حجم الملف 510 KB
عدد التثبيتات 98
النسخة الحالية 0.3.0
آخر تحديث 2019-03-08
تاريخ النشر 2019-03-08
المطور Zenture
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/iansinnott/stylite
عنوان صفحة المساعدة https://github.com/iansinnott/stylite/issues
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Stylite",
    "description": "Quickly customize styling on any website",
    "version": "0.3.0",
    "icons": {
        "128": "icon128x128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "match_about_blank": true,
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon19x19.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "",
        "storage",
        "unlimitedStorage"
    ]
}