NFTBlocker for Twitter

This extension automatically block anyone who has a hexagon-shaped profile picture (NFT bros).

NFTBlocker for Twitterคืออะไร?

NFTBlocker for Twitter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย theo546 และคุณลักษณะหลักของมันคือ "This extension automatically block anyone who has a hexagon-shaped profile picture (NFT bros)."

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

screenshot

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

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

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

                        This extension automatically block anyone who has an hexagon-shaped profile picture on Twitter.

The extension is open-source : https://github.com/theo546/NFTBlocker-for-Twitter                    

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

ชื่อ NFTBlocker for Twitter NFTBlocker for Twitter
ID maafcaodamkhklcfpdgmadkdecaihinp
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/nftblocker-for-twitter/maafcaodamkhklcfpdgmadkdecaihinp
คำอธิบาย This extension automatically block anyone who has a hexagon-shaped profile picture (NFT bros).
ขนาดไฟล์ 23.11 KB
จำนวนการติดตั้ง 74
เวอร์ชันปัจจุบัน 1.0.1
อัปเดตครั้งล่าสุด 2022-01-22
วันที่เผยแพร่ 2022-01-22
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา theo546
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/theo546/NFTBlocker-for-Twitter
URL หน้าช่วยเหลือ https://github.com/theo546/NFTBlocker-for-Twitter/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "NFTBlocker for Twitter",
    "description": "This extension automatically block anyone who has a hexagon-shaped profile picture (NFT bros).",
    "version": "1.0.1",
    "icons": {
        "48": "icons\/border-48.png"
    },
    "action": {
        "browser_style": true,
        "default_popup": "options.html",
        "default_icon": {
            "16": "icons\/page-16.png",
            "32": "icons\/page-32.png"
        }
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/*",
                "https:\/\/mobile.twitter.com\/*"
            ],
            "js": [
                "main_script.js"
            ]
        }
    ]
}