Yet Twitter - Minimal Twitter Theme

Customize your Twitter experience

Yet Twitter - Minimal Twitter Theme क्या है?

Yet Twitter - Minimal Twitter Theme Eunjae Lee द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Customize your Twitter experience"।

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        - Do you miss the old Twitter logo?
- Would you like to mute a specific account for X days?
- Want to hide tweets from accounts with the Blue verified mark?
- Do you want to block a huge list of users?                    

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

नाम Yet Twitter - Minimal Twitter Theme Yet Twitter - Minimal Twitter Theme
ID nglkbfgmfiojfiopeamadheagaiaofnb
आधिकारिक URL https://chromewebstore.google.com/detail/yet-twitter-minimal-twitt/nglkbfgmfiojfiopeamadheagaiaofnb
विवरण Customize your Twitter experience
फ़ाइल का आकार 389 KB
स्थापना संख्या 62
वर्तमान संस्करण 0.1.2
अंतिम अपडेट 2024-03-04
प्रकाशन तिथि 2023-11-01
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर Eunjae Lee
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/eunjae-lee/yet-twitter
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Yet Twitter - Minimal Twitter Theme",
    "version": "0.1.2",
    "description": "Customize your Twitter experience",
    "action": {
        "default_icon": ".\/assets\/icon-512.png",
        "default_popup": ".\/dist\/popup\/index.html"
    },
    "options_ui": {
        "page": ".\/dist\/options\/index.html",
        "open_in_tab": true
    },
    "background": {
        "service_worker": ".\/dist\/background\/index.mjs"
    },
    "icons": {
        "16": ".\/assets\/icon-512.png",
        "48": ".\/assets\/icon-512.png",
        "128": ".\/assets\/icon-512.png"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.twitter.com\/*",
                "*:\/\/*.x.com\/*"
            ],
            "js": [
                "dist\/contentScripts\/index.global.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "dist\/contentScripts\/style.css",
                "dist\/contentScripts\/injected.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    }
}