NoFT
Chrome extension to auto-block NFT profile pictures on Twitter
Cos'è NoFT?
NoFT è un'estensione di Chrome sviluppata da Ottomated, e la sua funzione principale è "Chrome extension to auto-block NFT profile pictures on Twitter".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione NoFT
Scarica i file di estensione NoFT in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Tired of seeing hexagonal profile pictures? This extension automatically blocks or mutes every user that you come across with a verified NFT profile picture.
Informazioni di Base sull'Estensione
Nome | NoFT |
ID | ignbemmolegaffpapcfpbadjnijbalfl |
URL Ufficiale | https://chromewebstore.google.com/detail/noft/ignbemmolegaffpapcfpbadjnijbalfl |
Descrizione | Chrome extension to auto-block NFT profile pictures on Twitter |
Dimensione del File | 139 KB |
Conteggio Installazioni | 4,506 |
Versione Corrente | 1.0.2 |
Ultimo Aggiornamento | 2022-01-30 |
Data di Pubblicazione | 2022-01-22 |
Valutazione | 4.78/5 Totale 59 Valutazioni |
Sviluppatore | Ottomated |
[email protected] | |
Tipo di Pagamento | free |
URL della Pagina della Politica sulla Privacy | https://get.mogultv.org/privacy |
Lingue Supportate | 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\/*" ] } ] } |