Hide Verified Twitter Users

A Chrome extension that hides verified Twitter users' posts.

Hide Verified Twitter Usersとは何ですか?

Hide Verified Twitter Usersはsardisticによって開発されたChromeの拡張機能で、その主な機能は「A Chrome extension that hides verified Twitter users' posts.」です。

拡張機能のスクリーンショット

screenshot

Hide Verified Twitter Users拡張機能のCRXファイルをダウンロード

Hide Verified Twitter Users拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
    ]
}