Simplify Twitter
Reduces Twitter interface to the bare minimum
Vad är Simplify Twitter?
Simplify Twitter är en Chrome-tillägg utvecklad av https://simpl.fyi, och dess huvudfunktion är "Reduces Twitter interface to the bare minimum".
Tilläggsskärmbilder
Ladda ner Simplify Twitter-förlängningens CRX-fil
Ladda ner Simplify Twitter-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
                        Only simplifies the main feed and messages right now... more to do.                     Grundläggande Information om Tillägg
| Namn |   |  
| ID | nmamhdcfoimpliccgjfchlglfhbelpmb | 
| Officiell webbadress | https://chromewebstore.google.com/detail/simplify-twitter/nmamhdcfoimpliccgjfchlglfhbelpmb | 
| Beskrivning | Reduces Twitter interface to the bare minimum | 
| Filstorlek | 17.24 KB | 
| Antal Installationer | 47 | 
| Aktuell Version | 1.4.10 | 
| Senast Uppdaterad | 2024-02-16 | 
| Publiceringsdatum | 2022-12-20 | 
| Utvecklare | https://simpl.fyi | 
| E-post | [email protected] | 
| Betalningssätt | free | 
| URL till Sekretesspolicy Sidan | https://simpl.fyi/privacy | 
| Stödda Språk | 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'"
    }
}  |  |