Sentinel
Clean up the BS from your social media feed
什么是Sentinel?
Sentinel是由AliTeshnizi开发的Chrome扩展程序,该扩展的主要功能是“Clean up the BS from your social media feed”。
扩展截图
下载Sentinel扩展crx文件
下载Sentinel扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Sentinel is an open source chrome plugin that allows you to apply custom filters to the posts you see on LinkedIn, Twitter, Instagram, and soon other major social media!
扩展基本信息
名称 | Sentinel |
ID | fkmbhpipdlamijgojpjflhonefdgaehj |
官方URL | https://chromewebstore.google.com/detail/sentinel/fkmbhpipdlamijgojpjflhonefdgaehj |
简介 | Clean up the BS from your social media feed |
文件大小 | 45.11 KB |
安装次数 | 48 |
当前版本 | 0.4 |
更新时间 | 2023-09-09 |
上架时间 | 2023-08-21 |
评分 | 5.00/5 共6次评分 |
开发者 | AliTeshnizi |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/teshnizi/Sentinel |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Sentinel", "version": "0.4", "description": "Clean up the BS from your social media feed", "icons": { "64": "icon512.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.linkedin.com\/*", "https:\/\/linkedin.com\/*" ], "js": [ "linkedin.js" ] }, { "matches": [ "https:\/\/twitter.com\/*", "https:\/\/www.twitter.com\/*", "https:\/\/mobile.twitter.com\/*", "https:\/\/x.com\/*", "https:\/\/www.x.com\/*" ], "js": [ "twitter.js" ] } ], "permissions": [ "storage" ], "options_ui": { "page": "options.html", "open_in_tab": true } } |