Simple Gmail Screen

Simplify Gmail screen, make the sidebar and top bar auto-hide.

Simple Gmail Screenคืออะไร?

Simple Gmail Screen เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://bart.solutions และคุณลักษณะหลักของมันคือ "Simplify Gmail screen, make the sidebar and top bar auto-hide."

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Simple Gmail Screen

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

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

                        This extension simply hides the top menu bar and left sidebar of Gmail.

The hidden menus could then be re-activated via moving your mouse cursor to the edge of screen.

Website: https://www.bart.com.hk/simple-gmail-screen/

Open sourced under GPL v3: https://github.com/bartsolutions/simple-gmail-screen

== Update 2022-07-08 (v0.10.1) ==
- Added option for bar hidden delay

== Update 2022-03-06 (v0.9.0) ==
- Added option to customize bar height / width

== Update 2022-02-19 (v0.8.1) ==
- Fix issue when select on search box

== Update 2022-02-13 (v0.8.0): == 
- Added option to hide activation area
- Misc bug fixes

== Update 2021-04-10 (v0.7.1) ==
- Show left bar when start dragging a row
- Add a bit timeout to avoid accidental activation of sidebar

== update 2021-01-22 (v0.6.2) ==
- Adjust UI to avoid accidental click of multiple select check box

== update 2021-01-15 (v0.6.1) ==
- Fix problem of compose button location due to Gmail UI change

== update 2020-11-23 (v0.5.1) ==
- fix problem for side bar menu collapse

== update 2020-10-19 (v0.4.0) ==
- update preferences

== update 2020-10-13 (v0.3.0) ==
- hide top bar logo part                    

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

ชื่อ Simple Gmail Screen Simple Gmail Screen
ID aoadinglmfmhaegojfdbeoljlnjabmkd
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/simple-gmail-screen/aoadinglmfmhaegojfdbeoljlnjabmkd
คำอธิบาย Simplify Gmail screen, make the sidebar and top bar auto-hide.
ขนาดไฟล์ 153 KB
จำนวนการติดตั้ง 585
เวอร์ชันปัจจุบัน 0.10.1
อัปเดตครั้งล่าสุด 2022-07-11
วันที่เผยแพร่ 2020-09-03
คะแนน 5.00/5 รวมทั้งหมด 8 คะแนน
ผู้พัฒนา https://bart.solutions
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://bart.solutions/simple-gmail-screen/
URL หน้าช่วยเหลือ https://bart.solutions/#ContactUs
URL หน้านโยบายความเป็นส่วนตัว https://bart.solutions/simple-gmail-notes-privacy-policy
ภาษาที่รองรับ id,ms,de,en,fil,fr,sw,nl,no,vi,tr,ca,da,et,es,hr,it,lv,lt,hu,pl,ro,sk,sl,fi,sv,cs,el,sr,bg,ru,uk,fa,mr,hi,bn,gu,ta,te,kn-IN,ml,th,am-ET,ar,zh-CN,zh-TW,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Simple Gmail Screen",
    "short_name": "SGScreen",
    "description": "__MSG_extDescription__",
    "version": "0.10.1",
    "default_locale": "en",
    "icons": {
        "16": "image\/icon.16.png",
        "48": "image\/icon.48.png",
        "128": "image\/icon.128.png"
    },
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        "lib\/jquery-3.1.0.min.js",
        "css\/style.css",
        "css\/bulma.min.css"
    ],
    "background": {
        "scripts": [
            "lib\/jquery-3.1.0.min.js",
            "utils.js",
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*"
            ],
            "js": [
                "lib\/jquery-3.1.0.min.js",
                "utils.js",
                "content.js"
            ],
            "css": [
                "css\/style.css"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_icon": "image\/icon.128.png",
        "default_popup": "popup.html"
    },
    "options_page": "options.html",
    "browser_specific_settings": {
        "gecko": {
            "id": "@simple-gmail-screen",
            "strict_min_version": "53.0"
        }
    }
}