GeeksforGeeks Dark Mode

GfG Dark Mode

GeeksforGeeks Dark Modeคืออะไร?

GeeksforGeeks Dark Mode เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://anantpatni.com และคุณลักษณะหลักของมันคือ "GfG Dark Mode"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย GeeksforGeeks Dark Mode

ดาวน์โหลดไฟล์ส่วนขยาย GeeksforGeeks Dark Mode ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        GeeksforGeeks dark mode is an extension that helps you quickly turn the website into a soothing dark theme.

Just click on the icon of the extension to toggle the theme.

Updates in v0.0.5 - Minor improvements on home page and sidenav                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ GeeksforGeeks Dark Mode GeeksforGeeks Dark Mode
ID nmdpdgickahiikobclgoolmfgiibegke
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/geeksforgeeks-dark-mode/nmdpdgickahiikobclgoolmfgiibegke
คำอธิบาย GfG Dark Mode
ขนาดไฟล์ 37.94 KB
จำนวนการติดตั้ง 1,488
เวอร์ชันปัจจุบัน 0.0.5
อัปเดตครั้งล่าสุด 2022-02-07
วันที่เผยแพร่ 2020-09-06
คะแนน 4.11/5 รวมทั้งหมด 18 คะแนน
ผู้พัฒนา https://anantpatni.com
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.0.5",
    "name": "GeeksforGeeks Dark Mode",
    "short_name": "dark-mode",
    "description": "GfG Dark Mode",
    "manifest_version": 2,
    "permissions": [
        "storage"
    ],
    "background": {
        "page": "lib\/chrome\/background.html"
    },
    "offline_enabled": true,
    "web_accessible_resources": [
        "data\/content_script\/*.css"
    ],
    "browser_action": {
        "default_title": "GfG Dark Mode",
        "default_icon": {
            "16": "data\/icons\/16.png",
            "32": "data\/icons\/32.png",
            "48": "data\/icons\/48.png",
            "64": "data\/icons\/64.png"
        }
    },
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png"
    },
    "content_scripts": [
        {
            "exclude_globs": [
                "*\/chrome\/newtab*"
            ],
            "matches": [
                "*:\/\/*.geeksforgeeks.org\/*"
            ],
            "all_frames": true,
            "match_about_blank": true,
            "js": [
                "data\/rules\/rules.js",
                "data\/content_script\/inject.js"
            ],
            "run_at": "document_start"
        }
    ]
}