Soothe

Browse the web with peace of mind.

Qu'est-ce que Soothe ?

Soothe est une extension Chrome développée par Niko Draca, et sa fonction principale est "Browse the web with peace of mind.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Soothe

Téléchargez les fichiers d'extension Soothe au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Soothe Soothe
ID joaijebnefdghgmjodecakgdhjgolaan
URL Officiel https://chrome.google.com/webstore/detail/soothe/joaijebnefdghgmjodecakgdhjgolaan
Description Browse the web with peace of mind.
Taille du Fichier 294 KB
Nombre d'Installations 191
Version Actuelle 0.0.0.2
Dernière Mise à Jour 2020-05-19
Date de Publication 2020-05-19
Évaluation 4.74/5 Total 39 Évaluations
Développeur Niko Draca
Email [email protected]
Type de Paiement free
Site Web de l'Extension http://www.soothe.care/
URL de la Page d'Aide http://www.soothe.care/
Langues Prises en Charge 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"
    }
}