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
官方網址 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"
    ]
}