Night Mode

Enjoy the web in the new night colors and protect your eyes

ما هو Night Mode؟

Night Mode هو إضافة Chrome تم تطويرها بواسطة SmartLink، والميزة الرئيسية لها هي "Enjoy the web in the new night colors and protect your eyes".

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

screenshot

تحميل ملف CRX للإضافة Night Mode

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

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

                        Night Mode

Version 2.0.0
- Fixed style issues after Instagram latest update.
- Adopted native DarkTheme from the Instagram app.
Enjoy !

This extension was developed Independently by SmartLink and not affiliated with Instagram Inc.                    

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

الاسم Night Mode Night Mode
ID bkiiljdcpccihhoigelmohcfkehdnjej
عنوان URL الرسمي https://chromewebstore.google.com/detail/night-mode/bkiiljdcpccihhoigelmohcfkehdnjej
الوصف Enjoy the web in the new night colors and protect your eyes
حجم الملف 42.85 KB
عدد التثبيتات 152,483
النسخة الحالية 2.0.0
آخر تحديث 2022-06-07
تاريخ النشر 2020-05-16
تقييم 3.84/5 مجموع تقييمات 129
المطور SmartLink
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Night Mode",
    "description": "Enjoy the web in the new night colors and protect your eyes",
    "version": "2.0.0",
    "author": "SmartLink",
    "browser_action": {
        "default_title": "Have a good day"
    },
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "background": {
        "page": "background.html",
        "persistent": true
    },
    "icons": {
        "16": "imgs\/icon16.png",
        "48": "imgs\/icon48.png",
        "128": "imgs\/icon128.png"
    },
    "web_accessible_resources": [
        "nightmode.css"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.instagram.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ]
}