NFTBlocker for Twitter

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

什麼是NFTBlocker for Twitter?

NFTBlocker for Twitter是由theo546開發的Chrome擴展程式,該擴展的主要功能是“This extension automatically block anyone who has a hexagon-shaped profile picture (NFT bros).”。

擴展截圖

screenshot

下載NFTBlocker for Twitter擴展crx文件

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