Old Twitter Layout
Brings back the old Twitter Layout
Was ist Old Twitter Layout?
Old Twitter Layout ist eine Chrome-Erweiterung, die von Wolvan entwickelt wurde, und ihr Hauptmerkmal ist "Brings back the old Twitter Layout".
Erweiterungsscreenshots
Old Twitter Layout-Erweiterungs-CRX-Datei herunterladen
Laden Sie Old Twitter Layout-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
Brings back the old Twitter layout, that Twitter has slowly started phasing out. No more mobile-like UI, no more currated feed.
May require refreshing multiple times before it goes into effect due to browser caching.
Want to thank me? Buy me a coffee!
https://ko-fi.com/wolvan Grundlegende Informationen zur Erweiterung
| Name | |
| ID | jjldkokjmjdnlnifmehbljdafklejeha |
| Offizielle URL | https://chrome.google.com/webstore/detail/old-twitter-layout/jjldkokjmjdnlnifmehbljdafklejeha |
| Beschreibung | Brings back the old Twitter Layout |
| Dateigröße | 45.42 KB |
| Installationsanzahl | 4,911 |
| Aktuelle Version | 1.0.6 |
| Letztes Update | 2020-05-14 |
| Veröffentlichungsdatum | 2020-05-14 |
| Bewertung | 4.51/5 Insgesamt 261 Bewertungen |
| Entwickler | Wolvan |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Old Twitter Layout",
"description": "Brings back the old Twitter Layout",
"version": "1.0.6",
"short_name": "otl",
"manifest_version": 2,
"default_locale": "en",
"icons": {
"16": "images\/icon-16.png",
"128": "images\/icon-128.png"
},
"background": {
"scripts": [
"scripts\/background.js",
"scripts\/storage.js"
],
"persistent": true
},
"content_scripts": [
{
"matches": [
"https:\/\/*.twitter.com\/*"
],
"js": [
"scripts\/firefox-copyfix-wrapper.js",
"scripts\/banner-removal-wrapper.js"
]
}
],
"web_accessible_resources": [
"scripts\/firefox-copyfix.js",
"scripts\/banner-removal.js"
],
"permissions": [
"webRequest",
"webRequestBlocking",
"clipboardRead",
"clipboardWrite",
"https:\/\/twitter.com\/*"
]
} | |