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
官方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
}