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文件

下載Soothe擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    }
}