Soothe

Browse the web with peace of mind.

Sootheคืออะไร?

Soothe เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Niko Draca และคุณลักษณะหลักของมันคือ "Browse the web with peace of mind."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Soothe

ดาวน์โหลดไฟล์ส่วนขยาย 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
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"
    }
}