Sentinel
Clean up the BS from your social media feed
Vad är Sentinel?
Sentinel är en Chrome-tillägg utvecklad av AliTeshnizi, och dess huvudfunktion är "Clean up the BS from your social media feed".
Tilläggsskärmbilder
Ladda ner Sentinel-förlängningens CRX-fil
Ladda ner Sentinel-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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!
Grundläggande Information om Tillägg
Namn | Sentinel |
ID | fkmbhpipdlamijgojpjflhonefdgaehj |
Officiell webbadress | https://chromewebstore.google.com/detail/sentinel/fkmbhpipdlamijgojpjflhonefdgaehj |
Beskrivning | Clean up the BS from your social media feed |
Filstorlek | 45.11 KB |
Antal Installationer | 48 |
Aktuell Version | 0.4 |
Senast Uppdaterad | 2023-09-09 |
Publiceringsdatum | 2023-08-21 |
Betyg | 5.00/5 Totalt 6 Betyg |
Utvecklare | AliTeshnizi |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/teshnizi/Sentinel |
Stödda Språk | 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 } } |