Simplify Twitter
Reduces Twitter interface to the bare minimum
Co to jest Simplify Twitter?
Simplify Twitter to rozszerzenie Chrome opracowane przez https://simpl.fyi, a jego główną funkcją jest „Reduces Twitter interface to the bare minimum”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Simplify Twitter
Pobierz pliki rozszerzeń Simplify Twitter w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Only simplifies the main feed and messages right now... more to do.
Podstawowe informacje o rozszerzeniu
Nazwa | Simplify Twitter |
ID | nmamhdcfoimpliccgjfchlglfhbelpmb |
Oficjalny URL | https://chromewebstore.google.com/detail/simplify-twitter/nmamhdcfoimpliccgjfchlglfhbelpmb |
Opis | Reduces Twitter interface to the bare minimum |
Rozmiar pliku | 17.24 KB |
Liczba instalacji | 47 |
Aktualna Wersja | 1.4.10 |
Ostatnia Aktualizacja | 2024-02-16 |
Data Publikacji | 2022-12-20 |
Deweloper | https://simpl.fyi |
[email protected] | |
Typ Płatności | free |
Adres URL Strony Polityki Prywatności | https://simpl.fyi/privacy |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Simplify Twitter", "version": "1.4.10", "manifest_version": 3, "description": "Reduces Twitter interface to the bare minimum", "homepage_url": "https:\/\/simpl.fyi", "icons": { "128": "img\/icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.twitter.com\/*" ], "js": [ "js\/util.js", "js\/constants.js", "js\/observers.js", "js\/main.js" ], "css": [ "css\/style.css" ], "run_at": "document_start", "all_frames": false } ], "web_accessible_resources": [ { "resources": [ "img\/*" ], "matches": [ "https:\/\/*.twitter.com\/*" ] } ], "content_security_policy": { "extension_pages": "default-src 'self'; style-src 'self'; script-src 'self'; img-src 'self'" } } |