Soothe
Browse the web with peace of mind.
Τι είναι το Soothe;
Το Soothe είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Niko Draca, και η κύρια λειτουργία του είναι "Browse the web with peace of mind.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου 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.
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
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" } } |