Tab Brightness Control

Control Brightness Of Each Tab

ما هو Tab Brightness Control؟

Tab Brightness Control هو إضافة Chrome تم تطويرها بواسطة Lakshya Gupta، والميزة الرئيسية لها هي "Control Brightness Of Each Tab".

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

screenshot
screenshot

تحميل ملف CRX للإضافة Tab Brightness Control

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

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

                        The extension allows you to control brightness of chrome tabs. You can change brightness of each tab individually.

Update Version 1.1:
   - Added option to persist brightness across pages

Update Version 1.2:
   - Made brightness persistence on by default

Update Version 1.3:
   - Extension now works on local files that are opened in the browser                    

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

الاسم Tab Brightness Control Tab Brightness Control
ID emdjkjjpeognjdnapljkfnihhgblekde
عنوان URL الرسمي https://chromewebstore.google.com/detail/tab-brightness-control/emdjkjjpeognjdnapljkfnihhgblekde
الوصف Control Brightness Of Each Tab
حجم الملف 329 KB
عدد التثبيتات 13,327
النسخة الحالية 1.3
آخر تحديث 2021-03-30
تاريخ النشر 2020-07-04
تقييم 3.20/5 مجموع تقييمات 41
المطور Lakshya Gupta
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/Lakshya2610/tab-brightness-control
عنوان صفحة المساعدة https://github.com/Lakshya2610/tab-brightness-control
عنوان صفحة سياسة الخصوصية https://github.com/Lakshya2610/tab-brightness-control/blob/master/PrivacyPolicy.txt
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Brightness Control",
    "author": "Lakshya Gupta",
    "version": "1.3",
    "description": "Control Brightness Of Each Tab",
    "permissions": [
        "activeTab"
    ],
    "browser_action": {
        "default_popup": "index.html"
    },
    "content_security_policy": "script-src 'self' 'sha256-B2Jcp\/mUaSiw5K6bOR3BiG6HKAk4B4faBAZl4JhLwXc='; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "persistent": true
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "128": "icon128.png",
        "256": "icon256.png",
        "512": "icon512.png"
    }
}