I am Darks

Turns the current page to a rough dark mode

I am Darksคืออะไร?

I am Darks เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Dark Extension และคุณลักษณะหลักของมันคือ "Turns the current page to a rough dark mode"

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย I am Darks

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

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

                        You should install this extension if you have felt the pain in your eyes when opening a bright white website, especially at night, and you can do nothing but burn your eyes, but worry not, Darks is here to save your day! (your eyes!).

When clicking on the "Become Dark" button a couple of CSS classes will be added on top of the current page to invert the color of the elements, so what is white will turn black and what is black will change to white, and so on, since these CSS classes do not belong to the website codebase, the dark effect will be gone when refreshing the page, unless the "Always be Dark" option is selected, in that case the classes are added automatically without the need of pressing again the "Become Dark" button.

Join me, I am Darks... and you can be as well!                    

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

ชื่อ I am Darks I am Darks
ID bihlpiceelipmmeikjcnbldfdfncppjl
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/i-am-darks/bihlpiceelipmmeikjcnbldfdfncppjl
คำอธิบาย Turns the current page to a rough dark mode
ขนาดไฟล์ 28.1 KB
จำนวนการติดตั้ง 14
เวอร์ชันปัจจุบัน 1.0.0
อัปเดตครั้งล่าสุด 2020-12-06
วันที่เผยแพร่ 2020-12-06
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Dark Extension
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "I am Darks",
    "version": "1.0.0",
    "description": "Turns the current page to a rough dark mode",
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "images\/darks__16.png",
        "32": "images\/darks__32.png",
        "48": "images\/darks__48.png",
        "128": "images\/darks__128.png"
    },
    "browser_action": {
        "default_icon": "images\/darks__16.png",
        "default_popup": "popup.html",
        "default_title": "Darks"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "js\/contentScript.js"
            ]
        }
    ]
}