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 |
官方網址 | 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 } } |