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 - это расширение Chrome, разработанное Bobby Zhang, и его основная функция - "Automatically blur your browser when your computer wakes up from sleep to avoid embarassment in public!".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Safe Open Browser Blurring

Скачайте файлы расширений Safe Open Browser Blurring в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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"
    ]
}