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.
拡張機能の基本情報
名前 | 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 |
Eメール | [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\/*" ] } ] } |