Clean Twitter
Remove all the annoying clutter from your Twitter.
Was ist Clean Twitter?
Clean Twitter ist eine Chrome-Erweiterung, die von dhaiwatpandya entwickelt wurde, und ihr Hauptmerkmal ist "Remove all the annoying clutter from your Twitter.".
Erweiterungsscreenshots
Clean Twitter-Erweiterungs-CRX-Datei herunterladen
Laden Sie Clean Twitter-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Enhance your Twitter experience by removing some of the clutter.
Currently supported features:
1) No sidebars on the right (Trending hashtags, ads, follow recommendations, etc)
2) No metrics/numbers (Likes, RTs, replies, followers)
You can turn any of the features on and off at any time.
This extension is open-source (https://github.com/Dhaiwat10/clean-twitter) and 100% safe to use. It does not collect any information or store it. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | ibcjnfhpdjinbcmojnmpnokcgfljiebb |
| Offizielle URL | https://chromewebstore.google.com/detail/clean-twitter/ibcjnfhpdjinbcmojnmpnokcgfljiebb |
| Beschreibung | Remove all the annoying clutter from your Twitter. |
| Dateigröße | 98.75 KB |
| Installationsanzahl | 306 |
| Aktuelle Version | 0.3.0 |
| Letztes Update | 2021-02-26 |
| Veröffentlichungsdatum | 2021-02-16 |
| Bewertung | 4.00/5 Insgesamt 4 Bewertungen |
| Entwickler | dhaiwatpandya |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/Dhaiwat10/clean-twitter |
| Hilfeseite URL | https://github.com/Dhaiwat10/clean-twitter/issues |
| Unterstützte Sprachen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Clean Twitter",
"description": "Remove all the annoying clutter from your Twitter.",
"version": "0.3.0",
"icons": {
"16": "icon.png",
"32": "icon.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/twitter.com\/*"
],
"js": [
"js\/jquery.js",
"js\/content.js",
"js\/popup.js"
]
}
],
"browser_action": {
"default_icon": "icon.png",
"default_title": "Clean Twitter",
"default_popup": "popup.html"
},
"permissions": [
"activeTab",
"storage",
"tabs"
]
} | |