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 |
| 官方網址 | 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\/*"
]
}
]
} | |