The Old Reader Dark

Dark theme for The Old Reader.

ما هو The Old Reader Dark؟

The Old Reader Dark هو إضافة Chrome تم تطويرها بواسطة laedit، والميزة الرئيسية لها هي "Dark theme for The Old Reader.".

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

screenshot

تحميل ملف CRX للإضافة The Old Reader Dark

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

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

                        A dark theme for The Old Reader.                    

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

الاسم The Old Reader Dark The Old Reader Dark
ID fpjjphhhciifpfhapopmdfppmhkepmnl
عنوان URL الرسمي https://chromewebstore.google.com/detail/the-old-reader-dark/fpjjphhhciifpfhapopmdfppmhkepmnl
الوصف Dark theme for The Old Reader.
حجم الملف 17.6 KB
عدد التثبيتات 20
النسخة الحالية 0.4
آخر تحديث 2019-10-05
تاريخ النشر 2019-10-04
تقييم 5.00/5 مجموع تقييمات 1
المطور laedit
نوع الدفع free
موقع الإضافة https://github.com/laedit/the-old-reader-dark
عنوان صفحة المساعدة https://github.com/laedit/the-old-reader-dark/issues
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "The Old Reader Dark",
    "short_name": "the-old-reader-dark",
    "version": "0.4",
    "description": "Dark theme for The Old Reader.",
    "homepage_url": "https:\/\/github.com\/laedit\/the-old-reader-dark",
    "permissions": [
        "*:\/\/theoldreader.com\/*",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "*:\/\/theoldreader.com\/*"
            ],
            "css": [
                "content_scripts\/dark-theme.css"
            ],
            "js": [
                "content_scripts\/inject-css.js"
            ]
        }
    ],
    "icons": {
        "64": "icons\/icon.png",
        "128": "icons\/icon-128.png"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}