Simplify Twitter
Reduces Twitter interface to the bare minimum
Cos'è Simplify Twitter?
Simplify Twitter è un'estensione di Chrome sviluppata da https://simpl.fyi, e la sua funzione principale è "Reduces Twitter interface to the bare minimum".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Simplify Twitter
Scarica i file di estensione Simplify Twitter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Only simplifies the main feed and messages right now... more to do.
Informazioni di Base sull'Estensione
Nome | Simplify Twitter |
ID | nmamhdcfoimpliccgjfchlglfhbelpmb |
URL Ufficiale | https://chromewebstore.google.com/detail/simplify-twitter/nmamhdcfoimpliccgjfchlglfhbelpmb |
Descrizione | Reduces Twitter interface to the bare minimum |
Dimensione del File | 17.24 KB |
Conteggio Installazioni | 47 |
Versione Corrente | 1.4.10 |
Ultimo Aggiornamento | 2024-02-16 |
Data di Pubblicazione | 2022-12-20 |
Sviluppatore | https://simpl.fyi |
[email protected] | |
Tipo di Pagamento | free |
URL della Pagina della Politica sulla Privacy | https://simpl.fyi/privacy |
Lingue Supportate | 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'" } } |