AddCSS

This extension allows you to add your own custom website specific CSS style sheets.

ما هو AddCSS؟

AddCSS هو إضافة Chrome تم تطويرها بواسطة http://mkhsoft.eu، والميزة الرئيسية لها هي "This extension allows you to add your own custom website specific CSS style sheets.".

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

screenshot
screenshot

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

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

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

                        AddCSS is a neat extension that lets you add your own custom domain specific CSS code to web pages

Your custom code is even synchronised between your Chrome browsers in different machines.                    

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

الاسم AddCSS AddCSS
ID ndddnaffbgingffgfneijoplfpeohabn
عنوان URL الرسمي https://chrome.google.com/webstore/detail/addcss/ndddnaffbgingffgfneijoplfpeohabn
الوصف This extension allows you to add your own custom website specific CSS style sheets.
حجم الملف 676 KB
عدد التثبيتات 252
النسخة الحالية 1.0
آخر تحديث 2017-01-20
تاريخ النشر 2017-01-20
تقييم 5.00/5 مجموع تقييمات 1
المطور http://mkhsoft.eu
نوع الدفع free
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "AddCSS",
    "description": "This extension allows you to add your own custom website specific CSS style sheets.",
    "version": "1.0",
    "browser_action": {
        "default_icon": "icon64.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon16.png",
        "64": "icon64.png",
        "128": "icon128.png",
        "256": "icon256.png"
    },
    "background": {
        "scripts": [
            "logic.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "tabs",
        "storage",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ]
}