Simplify Twitter
Reduces Twitter interface to the bare minimum
Wat is Simplify Twitter?
Simplify Twitter is een Chrome-extensie ontwikkeld door https://simpl.fyi, en de belangrijkste functie is "Reduces Twitter interface to the bare minimum".
Extensie Screenshots
Download het CRX-bestand van de extensie Simplify Twitter
Download Simplify Twitter-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Only simplifies the main feed and messages right now... more to do. Basisinformatie over de Extensie
| Naam | |
| ID | nmamhdcfoimpliccgjfchlglfhbelpmb |
| Officiële URL | https://chromewebstore.google.com/detail/simplify-twitter/nmamhdcfoimpliccgjfchlglfhbelpmb |
| Beschrijving | Reduces Twitter interface to the bare minimum |
| Bestandsgrootte | 17.24 KB |
| Aantal Installaties | 47 |
| Huidige Versie | 1.4.10 |
| Laatst Bijgewerkt | 2024-02-16 |
| Publicatiedatum | 2022-12-20 |
| Ontwikkelaar | https://simpl.fyi |
| [email protected] | |
| Betalingswijze | free |
| URL van de Privacybeleid Pagina | https://simpl.fyi/privacy |
| Ondersteunde Talen | 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'"
}
} | |