NoFT
Chrome extension to auto-block NFT profile pictures on Twitter
什么是NoFT?
NoFT是由Ottomated开发的Chrome扩展程序,该扩展的主要功能是“Chrome extension to auto-block NFT profile pictures on Twitter”。
扩展截图
下载NoFT扩展crx文件
下载NoFT扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Tired of seeing hexagonal profile pictures? This extension automatically blocks or mutes every user that you come across with a verified NFT profile picture. 扩展基本信息
| 名称 | |
| ID | ignbemmolegaffpapcfpbadjnijbalfl |
| 官方URL | https://chromewebstore.google.com/detail/noft/ignbemmolegaffpapcfpbadjnijbalfl |
| 简介 | Chrome extension to auto-block NFT profile pictures on Twitter |
| 文件大小 | 139 KB |
| 安装次数 | 4,506 |
| 当前版本 | 1.0.2 |
| 更新时间 | 2022-01-30 |
| 上架时间 | 2022-01-22 |
| 评分 | 4.78/5 共59次评分 |
| 开发者 | Ottomated |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 隐私政策页面URL | https://get.mogultv.org/privacy |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "NoFT",
"version": "1.0.2",
"description": "Chrome extension to auto-block NFT profile pictures on Twitter",
"background": {
"service_worker": "background.js",
"type": "module"
},
"icons": {
"16": "assets\/icon16.png",
"48": "assets\/icon48.png",
"128": "assets\/icon128.png"
},
"permissions": [
"storage",
"alarms",
"cookies"
],
"host_permissions": [
"*:\/\/*.twitter.com\/*"
],
"content_scripts": [
{
"js": [
"content\/import-index.js"
],
"matches": [
"*:\/\/*.twitter.com\/*"
]
}
],
"options_page": "pages\/popup\/index.html",
"action": {
"default_popup": "pages\/popup\/index.html"
},
"web_accessible_resources": [
{
"resources": [
"content\/closeInfoPopup.js",
"content\/autoBlock.js"
],
"matches": [
"*:\/\/*.twitter.com\/*"
]
},
{
"resources": [
"chunks\/*-*.js",
"content\/index.js"
],
"matches": [
"*:\/\/*.twitter.com\/*"
]
}
]
} | |