NoFT
Chrome extension to auto-block NFT profile pictures on Twitter
NoFTคืออะไร?
NoFT เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Ottomated และคุณลักษณะหลักของมันคือ "Chrome extension to auto-block NFT profile pictures on Twitter"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย NoFT
ดาวน์โหลดไฟล์ส่วนขยาย 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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | NoFT |
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\/*" ] } ] } |