Twitter Bot Hider

Hides twitter bots from your timeline.

Twitter Bot Hiderคืออะไร?

Twitter Bot Hider เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Ebu และคุณลักษณะหลักของมันคือ "Hides twitter bots from your timeline."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Twitter Bot Hider

ดาวน์โหลดไฟล์ส่วนขยาย Twitter Bot Hider ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Twitter Bot Hider Chrome Extension helps to hide spam/bot tweets under tweets' replies.

The source code can be found here: https://github.com/EbuOgden/TwitterBotHider                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Twitter Bot Hider Twitter Bot Hider
ID efpmoenhggjbiaeomapapohigijbobgb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/twitter-bot-hider/efpmoenhggjbiaeomapapohigijbobgb
คำอธิบาย Hides twitter bots from your timeline.
ขนาดไฟล์ 40.87 KB
จำนวนการติดตั้ง 33
เวอร์ชันปัจจุบัน 0.1.1
อัปเดตครั้งล่าสุด 2022-10-31
วันที่เผยแพร่ 2022-10-31
คะแนน 5.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา Ebu
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitter Bot Hider",
    "version": "0.1.1",
    "description": "Hides twitter bots from your timeline.",
    "permissions": [
        "tabs"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.twitter.com\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "https:\/\/*.githubusercontent.com\/*"
            ],
            "matches": [
                "https:\/\/*.twitter.com\/*"
            ]
        }
    ],
    "action": {
        "default_icon": {
            "16": "assets\/ext-icon.png",
            "24": "assets\/ext-icon.png",
            "32": "assets\/ext-icon.png"
        },
        "default_title": "Twitter Bot Hider",
        "default_popup": "popup.html"
    },
    "manifest_version": 3
}