Disable Twitter Feed
Removes the timeline on Twitter's homepage.
Vad är Disable Twitter Feed?
Disable Twitter Feed är en Chrome-tillägg utvecklad av https://lukasrosenstock.net, och dess huvudfunktion är "Removes the timeline on Twitter's homepage.".
Tilläggsskärmbilder
Ladda ner Disable Twitter Feed-förlängningens CRX-fil
Ladda ner Disable Twitter Feed-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
The Twitter timeline can be a rabbit-hole that hurts your productivity. Disable Twitter Feed is a minimalist, single-purpose add-on without any configuration options. It does one thing: removing the timeline on Twitter's homepage. All other functionality (e.g., private messages, opening individual profiles) remains intact.
Grundläggande Information om Tillägg
Namn | Disable Twitter Feed |
ID | oppnglmfkpdfodnepgilhcagbbdojekd |
Officiell webbadress | https://chromewebstore.google.com/detail/disable-twitter-feed/oppnglmfkpdfodnepgilhcagbbdojekd |
Beskrivning | Removes the timeline on Twitter's homepage. |
Filstorlek | 8 KB |
Antal Installationer | 388 |
Aktuell Version | 1.0 |
Senast Uppdaterad | 2020-12-04 |
Publiceringsdatum | 2020-12-03 |
Betyg | 5.00/5 Totalt 2 Betyg |
Utvecklare | https://lukasrosenstock.net |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Disable Twitter Feed", "version": "1.0", "description": "Removes the timeline on Twitter's homepage.", "content_scripts": [ { "matches": [ "*:\/\/*.twitter.com\/*" ], "js": [ "disablefeed.js" ], "run_at": "document_start" } ], "icons": { "48": "icon.png", "96": "[email protected]" } } |