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 |
Eメール | [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 } } |