NFTBlocker for Twitter
This extension automatically block anyone who has a hexagon-shaped profile picture (NFT bros).
Vad är NFTBlocker for Twitter?
NFTBlocker for Twitter är en Chrome-tillägg utvecklad av theo546, och dess huvudfunktion är "This extension automatically block anyone who has a hexagon-shaped profile picture (NFT bros).".
Tilläggsskärmbilder
Ladda ner NFTBlocker for Twitter-förlängningens CRX-fil
Ladda ner NFTBlocker for Twitter-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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
Grundläggande Information om Tillägg
Namn | NFTBlocker for Twitter |
ID | maafcaodamkhklcfpdgmadkdecaihinp |
Officiell webbadress | https://chromewebstore.google.com/detail/nftblocker-for-twitter/maafcaodamkhklcfpdgmadkdecaihinp |
Beskrivning | This extension automatically block anyone who has a hexagon-shaped profile picture (NFT bros). |
Filstorlek | 23.11 KB |
Antal Installationer | 74 |
Aktuell Version | 1.0.1 |
Senast Uppdaterad | 2022-01-22 |
Publiceringsdatum | 2022-01-22 |
Betyg | 5.00/5 Totalt 1 Betyg |
Utvecklare | theo546 |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/theo546/NFTBlocker-for-Twitter |
Hjälpsida URL | https://github.com/theo546/NFTBlocker-for-Twitter/issues |
Stödda Språk | 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" ] } ] } |