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によって開発されたChromeの拡張機能で、その主な機能は「Automatically blur your browser when your computer wakes up from sleep to avoid embarassment in public!」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

Safe Open Browser Blurring拡張機能のCRXファイルをダウンロード

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