Simplify Twitter

Reduces Twitter interface to the bare minimum

Simplify Twitter क्या है?

Simplify Twitter https://simpl.fyi द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Reduces Twitter interface to the bare minimum"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Simplify Twitter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Only simplifies the main feed and messages right now... more to do.                    

एक्सटेंशन की मूल जानकारी

नाम Simplify Twitter Simplify Twitter
ID nmamhdcfoimpliccgjfchlglfhbelpmb
आधिकारिक URL https://chromewebstore.google.com/detail/simplify-twitter/nmamhdcfoimpliccgjfchlglfhbelpmb
विवरण Reduces Twitter interface to the bare minimum
फ़ाइल का आकार 17.24 KB
स्थापना संख्या 47
वर्तमान संस्करण 1.4.10
अंतिम अपडेट 2024-02-16
प्रकाशन तिथि 2022-12-20
डेवलपर https://simpl.fyi
ईमेल [email protected]
भुगतान के प्रकार free
गोपनीयता नीति पृष्ठ URL https://simpl.fyi/privacy
समर्थित भाषाएँ 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'"
    }
}