Reverse Inbox

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

什麼是Reverse Inbox?

Reverse Inbox是由https://reverseinbox.com開發的Chrome擴展程式,該擴展的主要功能是“This extension helps you get through your oldest emails first while new ones are still coming in visible.”。

擴展截圖

screenshot

下載Reverse Inbox擴展crx文件

下載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
官方網址 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
}