NFTBlocker for Twitter
This extension automatically block anyone who has a hexagon-shaped profile picture (NFT bros).
Apa itu NFTBlocker for Twitter?
NFTBlocker for Twitter adalah ekstensi Chrome yang dikembangkan oleh theo546, dan fitur utamanya adalah "This extension automatically block anyone who has a hexagon-shaped profile picture (NFT bros).".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi NFTBlocker for Twitter
Unduh file ekstensi NFTBlocker for Twitter dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
This extension automatically block anyone who has an hexagon-shaped profile picture on Twitter. The extension is open-source : https://github.com/theo546/NFTBlocker-for-Twitter
Informasi Dasar Ekstensi
Nama | NFTBlocker for Twitter |
ID | maafcaodamkhklcfpdgmadkdecaihinp |
URL Resmi | https://chromewebstore.google.com/detail/nftblocker-for-twitter/maafcaodamkhklcfpdgmadkdecaihinp |
Deskripsi | This extension automatically block anyone who has a hexagon-shaped profile picture (NFT bros). |
Ukuran File | 23.11 KB |
Jumlah Instalasi | 74 |
Versi Saat Ini | 1.0.1 |
Terakhir Diperbarui | 2022-01-22 |
Tanggal Publikasi | 2022-01-22 |
Penilaian | 5.00/5 Total 1 Penilaian |
Pengembang | theo546 |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/theo546/NFTBlocker-for-Twitter |
URL Halaman Bantuan | https://github.com/theo546/NFTBlocker-for-Twitter/issues |
Bahasa yang Didukung | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "NFTBlocker for Twitter", "description": "This extension automatically block anyone who has a hexagon-shaped profile picture (NFT bros).", "version": "1.0.1", "icons": { "48": "icons\/border-48.png" }, "action": { "browser_style": true, "default_popup": "options.html", "default_icon": { "16": "icons\/page-16.png", "32": "icons\/page-32.png" } }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/*", "https:\/\/mobile.twitter.com\/*" ], "js": [ "main_script.js" ] } ] } |