Gmail Inbox Pauser

This extension temporarily pauses email delivery to your Gmail Inbox folder.

Gmail Inbox Pauser란 무엇입니까?

Gmail Inbox Pauser은(는) Imbibe Tech에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension temporarily pauses email delivery to your Gmail Inbox folder."입니다.

확장 프로그램 스크린샷

screenshot

Gmail Inbox Pauser 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Do you have issues concentrating on your work from computer because of frequent email arrivals in your Gmail Inbox? Do you feel anxiety by the unread count on your Gmail Inbox continuously ticking up while you are trying to get the work done?

If yes, then this simple Chrome Extension is for you. The extension adds a on/off button to your Google Chrome toolbar. When switched on, the extension overrides the Inbox link while in Gmail to a link with your current emails pausing further delivery of emails in your browser. This allows you to address your previous emails with a cool mind without getting disturbed continuously by new email arrivals or the unread count jumping on the Inbox.

When you need your Inbox back, simply click the on/off button again and your Inbox link is brought back to you.

Please note no emails are lost while you have paused them. As soon as you switch off the pause functionality, you get your Inbox back with your updated emails.

As it sits today, this is a very simple extension concentrating on one single task. If you would like to suggest a feature request to make it more useful to you, please send the same at support at imbibe dot in.                    

확장 프로그램 기본 정보

이름 Gmail Inbox Pauser Gmail Inbox Pauser
ID idcaocbhfgpmbmikgkoglfmbedocanaf
공식 URL https://chromewebstore.google.com/detail/gmail-inbox-pauser/idcaocbhfgpmbmikgkoglfmbedocanaf
설명 This extension temporarily pauses email delivery to your Gmail Inbox folder.
파일 크기 71.76 KB
설치 횟수 86
현재 버전 1.0.0.3
최근 업데이트 2017-03-10
출시 날짜 2017-03-09
평점 3.00/5 총 2 개의 평점
개발자 Imbibe Tech
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL http://imbibe.in/privacy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Gmail Inbox Pauser",
    "description": "This extension temporarily pauses email delivery to your Gmail Inbox folder.",
    "version": "1.0.0.3",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "page_action": {
        "default_icon": "images\/off.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*"
            ],
            "js": [
                "jquery.js",
                "content.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "activeTab",
        "https:\/\/mail.google.com\/*"
    ]
}