NoFT
Chrome extension to auto-block NFT profile pictures on Twitter
Co to jest NoFT?
NoFT to rozszerzenie Chrome opracowane przez Ottomated, a jego główną funkcją jest „Chrome extension to auto-block NFT profile pictures on Twitter”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia NoFT
Pobierz pliki rozszerzeń NoFT w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Tired of seeing hexagonal profile pictures? This extension automatically blocks or mutes every user that you come across with a verified NFT profile picture.
Podstawowe informacje o rozszerzeniu
Nazwa | NoFT |
ID | ignbemmolegaffpapcfpbadjnijbalfl |
Oficjalny URL | https://chromewebstore.google.com/detail/noft/ignbemmolegaffpapcfpbadjnijbalfl |
Opis | Chrome extension to auto-block NFT profile pictures on Twitter |
Rozmiar pliku | 139 KB |
Liczba instalacji | 4,506 |
Aktualna Wersja | 1.0.2 |
Ostatnia Aktualizacja | 2022-01-30 |
Data Publikacji | 2022-01-22 |
Ocena | 4.78/5 Łącznie 59 Oceny |
Deweloper | Ottomated |
[email protected] | |
Typ Płatności | free |
Adres URL Strony Polityki Prywatności | https://get.mogultv.org/privacy |
Obsługiwane Języki | 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\/*" ] } ] } |