NoFT
Chrome extension to auto-block NFT profile pictures on Twitter
Wat is NoFT?
NoFT is een Chrome-extensie ontwikkeld door Ottomated, en de belangrijkste functie is "Chrome extension to auto-block NFT profile pictures on Twitter".
Extensie Screenshots
Download het CRX-bestand van de extensie NoFT
Download NoFT-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Tired of seeing hexagonal profile pictures? This extension automatically blocks or mutes every user that you come across with a verified NFT profile picture.
Basisinformatie over de Extensie
Naam | NoFT |
ID | ignbemmolegaffpapcfpbadjnijbalfl |
Officiële URL | https://chromewebstore.google.com/detail/noft/ignbemmolegaffpapcfpbadjnijbalfl |
Beschrijving | Chrome extension to auto-block NFT profile pictures on Twitter |
Bestandsgrootte | 139 KB |
Aantal Installaties | 4,506 |
Huidige Versie | 1.0.2 |
Laatst Bijgewerkt | 2022-01-30 |
Publicatiedatum | 2022-01-22 |
Beoordeling | 4.78/5 Totaal 59 Beoordelingen |
Ontwikkelaar | Ottomated |
[email protected] | |
Betalingswijze | free |
URL van de Privacybeleid Pagina | https://get.mogultv.org/privacy |
Ondersteunde Talen | 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\/*" ] } ] } |