Safe Open Browser Blurring

Automatically blur your browser when your computer wakes up from sleep to avoid embarassment in public!

Safe Open Browser Blurring क्या है?

Safe Open Browser Blurring Bobby Zhang द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatically blur your browser when your computer wakes up from sleep to avoid embarassment in public!"।

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

screenshot
screenshot
screenshot

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

crx प्रारूप में Safe Open Browser Blurring एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Open Source extension that blurs every chrome tab when you wake up your computer so you don't accidentally embarrass yourself in public. What were you looking in your previous browsing session? It doesn't matter because no one behind you will see it. You can also press the browser bar button to blur/unblur all tabs!

WARNING: Does not work on Incognito mode by default.

TIP: Navigate to Settings -> Extensions -> Safe Open Details and enable "Allow in Incognito" to enable on Incognito mode!

Check out the code (logic in background.js): https://github.com/Bobbbby/Safe-Open-Chrome-Extension                    

एक्सटेंशन की मूल जानकारी

नाम Safe Open Browser Blurring Safe Open Browser Blurring
ID faiemedmceameikmifpgbeglbaikcmpc
आधिकारिक URL https://chrome.google.com/webstore/detail/safe-open-browser-blurrin/faiemedmceameikmifpgbeglbaikcmpc
विवरण Automatically blur your browser when your computer wakes up from sleep to avoid embarassment in public!
फ़ाइल का आकार 13.77 KB
स्थापना संख्या 89
वर्तमान संस्करण 1.0
अंतिम अपडेट 2020-02-26
प्रकाशन तिथि 2020-02-26
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर Bobby Zhang
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/Bobbbby/Safe-Open-Chrome-Extension
गोपनीयता नीति पृष्ठ URL https://bobbbby.github.io/Safe-Open-Chrome-Extension-Privacy
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Safe Open Browser Blurring",
    "short_name": "Safe Open",
    "version": "1.0",
    "description": "Automatically blur your browser when your computer wakes up from sleep to avoid embarassment in public!",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "icona16.png",
        "48": "iconb48.png",
        "128": "iconb128.png"
    },
    "browser_action": {
        "default_icon": "iconb32.png",
        "default_title": "Safe Open"
    },
    "permissions": [
        "http:\/\/*\/*",
        "http:\/\/*\/",
        "https:\/\/*\/",
        "idle"
    ]
}