hide-my-inbox

A gmail extension that helps you focus.

hide-my-inbox란 무엇입니까?

hide-my-inbox은(는) Jacob Rogelberg에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A gmail extension that helps you focus."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

hide-my-inbox 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        In a world of distractions, your inbox should be a place of calm. 🧘‍♀️

Hide My Inbox is a chrome extension that sits on top of your gmail interface to hide your inbox and cultivate better email habits.

👀 Show and hide your inbox with a simple toggle

🎯 Add one goal to focus on before getting distracted by anything else

🔒Private by default. We do not have access to your emails or browser. Hide My Inbox is an interface layer that sits on top of your inbox and hosted on your local machine. We plan on open sourcing it in the future. Until then, if you want to inspect the code, please send us an email and we'll share it with you for verification.  

To get in touch, report a bug, or request a feature, please send us a tweet at https://twitter.com/HideMyInbox                    

확장 프로그램 기본 정보

이름 hide-my-inbox hide-my-inbox
ID opoiiplpmobnbcelbninmhnplflgpmnn
공식 URL https://chromewebstore.google.com/detail/hide-my-inbox/opoiiplpmobnbcelbninmhnplflgpmnn
설명 A gmail extension that helps you focus.
파일 크기 965 KB
설치 횟수 58
현재 버전 1.0.4
최근 업데이트 2020-07-21
출시 날짜 2020-06-25
평점 5.00/5 총 1 개의 평점
개발자 Jacob Rogelberg
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://hidemyinbox.club
도움말 페이지 URL https://twitter.com/HideMyInbox
개인정보 보호 정책 페이지 URL https://designerhangout.co/privacy-policy
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "hide-my-inbox",
    "description": "A gmail extension that helps you focus.",
    "version": "1.0.4",
    "manifest_version": 2,
    "icons": {
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "browser_action": {
        "default_title": "hide-my-inbox"
    },
    "background": {
        "page": "background.html"
    },
    "options_ui": {
        "page": "options\/options.html",
        "chrome_style": true
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/mail.google.com\/*"
            ],
            "js": [
                "libs\/jquery-3.4.1.min.js",
                "libs\/inboxsdk.js",
                "injector.js"
            ],
            "css": [
                "libs\/font-awesome.min.css",
                "inject.css"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "*:\/\/mail.google.com\/*"
    ],
    "web_accessible_resources": [
        "*.js",
        "*.css",
        "*.html",
        "fonts\/*"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/www.gstatic.com\/ https:\/\/*.firebaseio.com https:\/\/www.googleapis.com; object-src 'self'; connect-src 'self' wss:\/\/*.firebaseio.com"
}