Soothe
Browse the web with peace of mind.
什么是Soothe?
Soothe是由Niko Draca开发的Chrome扩展程序,该扩展的主要功能是“Browse the web with peace of mind.”。
扩展截图
下载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.
扩展基本信息
名称 | |
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" } } |