Twitter Sanitizer
Improve your Twitter experience by hiding different features.
Vad är Twitter Sanitizer?
Twitter Sanitizer är en Chrome-tillägg utvecklad av Hristiyan Dodov, och dess huvudfunktion är "Improve your Twitter experience by hiding different features.".
Tilläggsskärmbilder
Ladda ner Twitter Sanitizer-förlängningens CRX-fil
Ladda ner Twitter Sanitizer-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
This extension allows you to hide different parts of Twitter. The most notable feature is removing followers, likes and pretty much all numbers. You can also make you feed more compact by removing the action buttons (reply, retweet, like) from each tweet. However, you can still do these actions after clicking on a tweet. Here's the full list of toggles: - Sidebars - Profile counters - Profile card stats - Post RTs and likes - Feed post actions - Followers you know - Notification faces
Grundläggande Information om Tillägg
Namn | Twitter Sanitizer |
ID | amdinnnilgkcpgohiijcejpnhgngmfdl |
Officiell webbadress | https://chromewebstore.google.com/detail/twitter-sanitizer/amdinnnilgkcpgohiijcejpnhgngmfdl |
Beskrivning | Improve your Twitter experience by hiding different features. |
Filstorlek | 29.21 KB |
Antal Installationer | 176 |
Aktuell Version | 1.1 |
Senast Uppdaterad | 2017-06-26 |
Publiceringsdatum | 2017-06-25 |
Betyg | 4.00/5 Totalt 3 Betyg |
Utvecklare | Hristiyan Dodov |
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": "Twitter Sanitizer", "version": "1.1", "author": "Hristiyan Dodov", "description": "Improve your Twitter experience by hiding different features.", "icons": { "16": "icon-16.png", "32": "icon-32.png", "64": "icon-64.png", "128": "icon-128.png" }, "browser_action": { "default_popup": "popup.html" }, "permissions": [ "storage" ], "content_scripts": [ { "run_at": "document_start", "js": [ "hider.js" ], "matches": [ "http:\/\/twitter.com\/*", "https:\/\/twitter.com\/*" ] } ] } |