Reverse Inbox

This extension helps you get through your oldest emails first while new ones are still coming in visible.

Reverse Inboxคืออะไร?

Reverse Inbox เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://reverseinbox.com และคุณลักษณะหลักของมันคือ "This extension helps you get through your oldest emails first while new ones are still coming in visible."

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

screenshot

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

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

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

                        Reverse your Gmail Priority Inbox and get through the emails you meant to. New emails are added to the bottom of your inbox so you are not distracted to answer those first.                    

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

ชื่อ Reverse Inbox Reverse Inbox
ID hpcchgjlaccmgmehofdkapefhkjadeha
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/reverse-inbox/hpcchgjlaccmgmehofdkapefhkjadeha
คำอธิบาย This extension helps you get through your oldest emails first while new ones are still coming in visible.
ขนาดไฟล์ 904 KB
จำนวนการติดตั้ง 36
เวอร์ชันปัจจุบัน 1.3
อัปเดตครั้งล่าสุด 2020-07-14
วันที่เผยแพร่ 2020-07-14
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา https://reverseinbox.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://www.reverseinbox.com
URL หน้าช่วยเหลือ http://www.reverseinbox.com/
URL หน้านโยบายความเป็นส่วนตัว http://reverseinbox.com/privacy-policy
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Reverse Inbox",
    "version": "1.3",
    "description": "This extension helps you get through your oldest emails first while new ones are still coming in visible.",
    "browser_action": {
        "default_popup": "src\/browser_action\/browser_action.html",
        "default_icon": "icons\/32.png"
    },
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "js\/jquery.min.js",
                "js\/script.js"
            ],
            "css": [
                "css\/style.css"
            ],
            "matches": [
                "*:\/\/mail.google.com\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "*:\/\/mail.google.com\/*"
    ],
    "icons": {
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png",
        "256": "icons\/256.png"
    },
    "manifest_version": 2
}