Clean Twitter
Remove all the annoying clutter from your Twitter.
Vad är Clean Twitter?
Clean Twitter är en Chrome-tillägg utvecklad av dhaiwatpandya, och dess huvudfunktion är "Remove all the annoying clutter from your Twitter.".
Tilläggsskärmbilder
Ladda ner Clean Twitter-förlängningens CRX-fil
Ladda ner Clean Twitter-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
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. Grundläggande Information om Tillägg
| Namn | |
| ID | ibcjnfhpdjinbcmojnmpnokcgfljiebb |
| Officiell webbadress | https://chromewebstore.google.com/detail/clean-twitter/ibcjnfhpdjinbcmojnmpnokcgfljiebb |
| Beskrivning | Remove all the annoying clutter from your Twitter. |
| Filstorlek | 98.75 KB |
| Antal Installationer | 306 |
| Aktuell Version | 0.3.0 |
| Senast Uppdaterad | 2021-02-26 |
| Publiceringsdatum | 2021-02-16 |
| Betyg | 4.00/5 Totalt 4 Betyg |
| Utvecklare | dhaiwatpandya |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/Dhaiwat10/clean-twitter |
| Hjälpsida URL | https://github.com/Dhaiwat10/clean-twitter/issues |
| Stödda Språk | 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"
]
} | |