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