Inbox Dark

A dark "theme" for Google Inbox.

Inbox Darkคืออะไร?

Inbox Dark เป็นส่วนขยายของ Chrome ที่พัฒนาโดย John Riddle และคุณลักษณะหลักของมันคือ "A dark "theme" for Google Inbox."

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

screenshot

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

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

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

                        A dark "theme", sometimes called Night Mode, for Google Inbox. This extension was written as a personal project and is presented as-is. Updates will be applied as long as I continue using Inbox.

v1.6:
 -Some hangouts sidebar updates to various elements.
v1.5:
 -White backgrounds darkened on empty inbox and folders.
v1.4:
 -Changed the title bar of open emails to a lighter gray, stays gray when you scroll down.
 -Darkened the "Remember To" dialog area.
 -Darkened the attachments window.
v1.3:
  -Testing out a pale yellow for new emails, as the current bold white is hard to distinguish.
  -Brightended up some icons. Black icons are still problematic.
  -Canned replies are brighter.
  -Horizontal dividers are dark now.
  -Miscellaneous text brightened.
v1.2:
  - Fixed 1.1 bug that prevented Hangouts area from disabling.
v1.1:
  -Darkened the Hangouts area.
  -Tweaked miscellaneous items like hover tooltips.
  -Small changes to the extension popup.                    

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

ชื่อ Inbox Dark Inbox Dark
ID iejjbbdhkinkikfmfmikkiggihjgcdhe
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/inbox-dark/iejjbbdhkinkikfmfmikkiggihjgcdhe
คำอธิบาย A dark "theme" for Google Inbox.
ขนาดไฟล์ 13.12 KB
จำนวนการติดตั้ง 303
เวอร์ชันปัจจุบัน 1.6
อัปเดตครั้งล่าสุด 2018-09-12
วันที่เผยแพร่ 2018-09-12
คะแนน 4.45/5 รวมทั้งหมด 11 คะแนน
ผู้พัฒนา John Riddle
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Inbox Dark",
    "version": "1.6",
    "author": "John Riddle",
    "description": "A dark \"theme\" for Google Inbox.",
    "permissions": [
        "activeTab",
        "declarativeContent",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/inbox_dark16.png",
            "32": "images\/inbox_dark32.png",
            "48": "images\/inbox_dark48.png",
            "128": "images\/inbox_dark128.png"
        }
    },
    "icons": {
        "16": "images\/inbox_dark16.png",
        "32": "images\/inbox_dark32.png",
        "48": "images\/inbox_dark48.png",
        "128": "images\/inbox_dark128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/inbox.google.com\/*",
                "https:\/\/hangouts.google.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "content.js"
            ],
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "dark.css"
    ],
    "manifest_version": 2
}