Hide Verified Twitter Users

A Chrome extension that hides verified Twitter users' posts.

Hide Verified Twitter Usersคืออะไร?

Hide Verified Twitter Users เป็นส่วนขยายของ Chrome ที่พัฒนาโดย sardistic และคุณลักษณะหลักของมันคือ "A Chrome extension that hides verified Twitter users' posts."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Hide Verified Twitter Users

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
    ]
}