Soothe

Browse the web with peace of mind.

Soothe란 무엇입니까?

Soothe은(는) Niko Draca에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Browse the web with peace of mind."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Soothe is an extension made to help people browse the web without seeing malicious content. 

MISSION

Our main goal is to prevent online harassment and help users avoid seeing triggers while they browse the web. We strongly believe that no one online should have to worry about this.


FEATURES

- LIVE UPDATING:
Avoid seeing hateful messages in real time (Facebook, Twitter etc.)

- SENTIMENT ANALYSIS:
We will not filter out content until we determine the context, meaning you won't miss out on anything

- ADD TERMS:
If we happened to miss a word/phrase you can tag it and help us become a better for the community!

- PERSONALIZED:
Only check off the content that makes you uncomfortable and we will help you avoid it.                    

확장 프로그램 기본 정보

이름 Soothe Soothe
ID joaijebnefdghgmjodecakgdhjgolaan
공식 URL https://chrome.google.com/webstore/detail/soothe/joaijebnefdghgmjodecakgdhjgolaan
설명 Browse the web with peace of mind.
파일 크기 294 KB
설치 횟수 191
현재 버전 0.0.0.2
최근 업데이트 2020-05-19
출시 날짜 2020-05-19
평점 4.74/5 총 39 개의 평점
개발자 Niko Draca
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://www.soothe.care/
도움말 페이지 URL http://www.soothe.care/
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Soothe",
    "description": "Browse the web with peace of mind.",
    "version": "0.0.0.2",
    "manifest_version": 2,
    "icons": {
        "16": "public\/img\/soothe-icon-16.png",
        "48": "public\/img\/soothe-icon-48.png",
        "128": "public\/img\/soothe-icon-128.png"
    },
    "background": {
        "scripts": [
            "bower_components\/firebase\/firebase.js",
            "background\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content\/searchDOM.js",
                "content\/blur.js",
                "content\/content.js",
                "bower_components\/sentimood\/sentimood.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "activeTab",
        "storage",
        "debugger",
        "contextMenus"
    ],
    "web_accessible_resources": [],
    "content_security_policy": "script-src 'self' https:\/\/cdn.firebase.com https:\/\/*.firebaseio.com 'unsafe-eval'; object-src 'self'",
    "browser_action": {
        "default_title": "Soothe",
        "default_popup": "public\/index.html"
    }
}