Simplify Twitter
Reduces Twitter interface to the bare minimum
Hvad er Simplify Twitter?
Simplify Twitter er en Chrome-udvidelse udviklet af https://simpl.fyi, og dens hovedfunktion er "Reduces Twitter interface to the bare minimum".
Udvidelsesskærmbilleder
Download Simplify Twitter-udvidelses-CRX-fil
Download Simplify Twitter-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
Only simplifies the main feed and messages right now... more to do.
Grundlæggende oplysninger om udvidelsen
Navn | Simplify Twitter |
ID | nmamhdcfoimpliccgjfchlglfhbelpmb |
Officiel URL | https://chromewebstore.google.com/detail/simplify-twitter/nmamhdcfoimpliccgjfchlglfhbelpmb |
Beskrivelse | Reduces Twitter interface to the bare minimum |
Filstørrelse | 17.24 KB |
Antal Installationer | 47 |
Nuværende Version | 1.4.10 |
Senest Opdateret | 2024-02-16 |
Udgivelsesdato | 2022-12-20 |
Udvikler | https://simpl.fyi |
[email protected] | |
Betalingsmetode | free |
URL til Fortrolighedspolitik Side | https://simpl.fyi/privacy |
Understøttede Sprog | 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'" } } |