hide-my-inbox

A gmail extension that helps you focus.

hide-my-inbox क्या है?

hide-my-inbox Jacob Rogelberg द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A gmail extension that helps you focus."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में hide-my-inbox एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
}