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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    ]
}