Hide Verified Twitter Users

A Chrome extension that hides verified Twitter users' posts.

Hide Verified Twitter Users क्या है?

Hide Verified Twitter Users sardistic द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A Chrome extension that hides verified Twitter users' posts."।

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

screenshot

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

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

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

                        Chrome Extension: Hide Verified Posts
This Chrome extension allows you to toggle hiding verified posts on Twitter. When the extension is active, it will hide all tweets from verified users.

How to use
Install the extension in your Chrome browser.
Click on the extension icon in the toolbar to toggle between hiding and showing verified posts.
The extension will automatically update the display of tweets on the current page according to your preference (hide/show verified posts).

This is a very crude extension that sometimes produces errors, but works enough for my purposes. If you'd like to update or change any of the code, it is published on GitHub here:

https://github.com/sardistic/Hide-Verified-Twitter-Users                    

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

नाम Hide Verified Twitter Users Hide Verified Twitter Users
ID egpeogmkamgdmolhpkajgnoookedcghb
आधिकारिक URL https://chromewebstore.google.com/detail/hide-verified-twitter-use/egpeogmkamgdmolhpkajgnoookedcghb
विवरण A Chrome extension that hides verified Twitter users' posts.
फ़ाइल का आकार 7.72 KB
स्थापना संख्या 62
वर्तमान संस्करण 1.0
अंतिम अपडेट 2023-04-27
प्रकाशन तिथि 2023-04-26
रेटिंग 2.00/5 कुल 1 रेटिंग्स
डेवलपर sardistic
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://www.sardistic.com
सहायता पृष्ठ URL https://ko-fi.com/sardistic
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Hide Verified Twitter Users",
    "version": "1.0",
    "description": "A Chrome extension that hides verified Twitter users' posts.",
    "icons": {
        "48": "icon.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "48": "icon.png"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "activeTab",
        "scripting",
        "storage"
    ]
}