Safe History

Scans web pages you visit for adult or Not Safe For Work (NSFW) content and removes them from your history.

Safe History란 무엇입니까?

Safe History은(는) AnthonyOSX에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Scans web pages you visit for adult or Not Safe For Work (NSFW) content and removes them from your history."입니다.

확장 프로그램 스크린샷

screenshot

Safe History 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Tired of forgetting to switch to incognito, delete specific results from your history or have someone checking your history who gets suspicious when it seems to be recently cleared? Those times are over, Safe History is here to help.

Safe History works by automatically scanning the web pages you visit and looking for anything that might get you in trouble (porn, NSFW, nudity, profanity, etc.). If something is found the page is automatically flagged, deleted from your browsing history and the browser icon will color itself to notify you your history is in good hands. Everything else is simply ignored and kept in your history like normal.

Safe History features:
    - Automatic deletion of adult or Not Safe For Work (NSFW) sites history entries right when you view them
    - Maintains a realistic and clean search history
    - No user input needed
    - Keeps all history deemed "safe" for all eyes

If a site manages to slip past the filter please report it.


Icon credits: "data-filter" by Vecteezy is licensed under CC BY 3.0                    

확장 프로그램 기본 정보

이름 Safe History Safe History
ID dlkkhffefpkmobphiphbghhhilhoopma
공식 URL https://chromewebstore.google.com/detail/safe-history/dlkkhffefpkmobphiphbghhhilhoopma
설명 Scans web pages you visit for adult or Not Safe For Work (NSFW) content and removes them from your history.
파일 크기 43.61 KB
설치 횟수 496
현재 버전 1.0.3
최근 업데이트 2016-02-28
출시 날짜 2016-02-27
평점 3.33/5 총 6 개의 평점
개발자 AnthonyOSX
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Safe History",
    "description": "Scans web pages you visit for adult or Not Safe For Work (NSFW) content and removes them from your history.",
    "version": "1.0.3",
    "manifest_version": 2,
    "permissions": [
        "contextMenus",
        "tabs",
        "history"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "jquery-1.12.1.min.js",
                "inject.js"
            ]
        }
    ],
    "page_action": {
        "default_title": "Safe History",
        "default_popup": "page_action.html"
    },
    "icons": {
        "128": "data-filter-128.png",
        "48": "data-filter-48.png",
        "32": "data-filter-32.png",
        "16": "data-filter-16.png"
    }
}